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 /rts/package.conf.in | |
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 'rts/package.conf.in')
-rw-r--r-- | rts/package.conf.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/package.conf.in b/rts/package.conf.in index 727b586a09..9068549e21 100644 --- a/rts/package.conf.in +++ b/rts/package.conf.in @@ -53,7 +53,7 @@ extra-libraries: #ifdef INSTALLING include-dirs: INCLUDE_DIR PAPI_INCLUDE_DIR #else /* !INSTALLING */ -include-dirs: TOP"/rts/dist/build" TOP"/includes" TOP"/includes/dist-ghcconstants/header" TOP"/includes/dist-derivedconstants/header" +include-dirs: TOP"/rts/dist/build" TOP"/includes" TOP"/includes/dist-derivedconstants/header" #endif includes: Stg.h |