diff options
author | Ian Lynagh <igloo@earth.li> | 2007-12-05 17:03:35 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-12-05 17:03:35 +0000 |
commit | 5d7e13eab7070d6858f6b8ff572baed572967fe2 (patch) | |
tree | 1698b4a431553f2ce5d9b4feb1aa9beaacc885cd /compiler/codeGen/CgUtils.hs | |
parent | 8b23f67d60248675c3bdc3fa15577b66c31fa339 (diff) | |
download | haskell-5d7e13eab7070d6858f6b8ff572baed572967fe2.tar.gz |
#include ../includes/MachRegs.h rather than just MachRegs.h
This fixes building on NixOS. I'm not sure why it worked everywhere else,
but not on NixOS, before.
Diffstat (limited to 'compiler/codeGen/CgUtils.hs')
-rw-r--r-- | compiler/codeGen/CgUtils.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/codeGen/CgUtils.hs b/compiler/codeGen/CgUtils.hs index fa5807add0..886a36a95e 100644 --- a/compiler/codeGen/CgUtils.hs +++ b/compiler/codeGen/CgUtils.hs @@ -51,7 +51,7 @@ module CgUtils ( ) where #include "HsVersions.h" -#include "MachRegs.h" +#include "../includes/MachRegs.h" import CgMonad import TyCon |