diff options
author | Ian Lynagh <ian@well-typed.com> | 2012-09-12 23:34:27 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2012-09-13 00:12:15 +0100 |
commit | 86054b4ab5125a8b71887b06786d0a428539fb9c (patch) | |
tree | a1fe272156af9f9510976194eade4c51500ecd3e /includes/HaskellConstants.hs | |
parent | 2b7319a67de0771d31626091e43dd3b60827a0ea (diff) | |
download | haskell-86054b4ab5125a8b71887b06786d0a428539fb9c.tar.gz |
Use conditionals rather than CPP in mkDerivedConstants
This means we only need to build one copy of the program, which
will make life simpler as I plan to add more variants.
Diffstat (limited to 'includes/HaskellConstants.hs')
-rw-r--r-- | includes/HaskellConstants.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/HaskellConstants.hs b/includes/HaskellConstants.hs index 1cf6de5d19..dfef14e48f 100644 --- a/includes/HaskellConstants.hs +++ b/includes/HaskellConstants.hs @@ -203,5 +203,5 @@ bITMAP_BITS_SHIFT = BITMAP_BITS_SHIFT -- Constants derived from headers in ghc/includes, generated by the program -- ../includes/mkDerivedConstants.c. -#include "../includes/dist-ghcconstants/header/GHCConstants.h" +#include "../includes/dist-derivedconstants/header/GHCConstants.h" |