diff options
author | Ian Lynagh <igloo@earth.li> | 2009-04-26 11:42:15 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-04-26 11:42:15 +0000 |
commit | 34cc75e1a62638f2833815746ebce0a9114dc26b (patch) | |
tree | ef21e8fd7af1356beea9cce7d6efb8a65374e24c /rts/package.conf.in | |
parent | 74e1368d4688ee16f6decdf2cd3ebe27506b26ba (diff) | |
download | haskell-34cc75e1a62638f2833815746ebce0a9114dc26b.tar.gz |
GHC new build system megapatch
Diffstat (limited to 'rts/package.conf.in')
-rw-r--r-- | rts/package.conf.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/rts/package.conf.in b/rts/package.conf.in index 490222fdb9..54f3b27543 100644 --- a/rts/package.conf.in +++ b/rts/package.conf.in @@ -3,7 +3,7 @@ #include "ghcconfig.h" #include "RtsConfig.h" -name: PACKAGE +name: rts version: 1.0 license: BSD3 maintainer: glasgow-haskell-users@haskell.org @@ -21,9 +21,9 @@ library-dirs: LIB_DIR GMP_LIB_DIRS PAPI_LIB_DIR /* force the dist-provided gcc-lib/ into scope. */ # endif #else /* !INSTALLING */ -library-dirs: FPTOOLS_TOP_ABS"/rts" GMP_LIB_DIRS PAPI_LIB_DIR +library-dirs: TOP"/rts/dist/build" GMP_LIB_DIRS PAPI_LIB_DIR # if !defined(HAVE_LIB_GMP) && !defined(HAVE_FRAMEWORK_GMP) - , FPTOOLS_TOP_ABS"/gmp" + , TOP"/gmp" # endif #endif @@ -60,9 +60,9 @@ extra-libraries: "m" /* for ldexp() */ #ifdef INSTALLING include-dirs: INCLUDE_DIR GMP_INCLUDE_DIRS PAPI_INCLUDE_DIR #else /* !INSTALLING */ -include-dirs: FPTOOLS_TOP_ABS"/includes" +include-dirs: TOP"/includes" # if !defined(HAVE_LIB_GMP) && !defined(HAVE_FRAMEWORK_GMP) - FPTOOLS_TOP_ABS"/gmp/gmpbuild" + TOP"/gmp/gmpbuild" # endif GMP_INCLUDE_DIRS #endif |