From 73ef81cb72ebde9c2614000c0a306ba6405689ae Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 20 Jan 2005 15:05:59 +0000 Subject: [PATCH] [project @ 2005-01-20 15:05:59 by simonmar] One package.conf.in file I forgot --- ghc/rts/package.conf.in | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ghc/rts/package.conf.in b/ghc/rts/package.conf.in index b1df8eb..24b3df9 100644 --- a/ghc/rts/package.conf.in +++ b/ghc/rts/package.conf.in @@ -3,7 +3,7 @@ #include "ghcconfig.h" #include "RtsConfig.h" -name: rts +name: PACKAGE version: 1.0 license: BSD3 maintainer: glasgow-haskell-users@haskell.org @@ -15,15 +15,15 @@ hidden-modules: import-dirs: #ifdef INSTALLING -library-dirs: "$libdir" +library-dirs: LIB_DIR # ifdef mingw32_TARGET_OS - , "$libdir/gcc-lib" + , LIB_DIR"/gcc-lib" /* force the dist-provided gcc-lib/ into scope. */ # endif #else /* !INSTALLING */ -library-dirs: "$libdir/ghc/rts" +library-dirs: FPTOOLS_TOP_ABS"/ghc/rts" # ifndef HAVE_LIBGMP - , "$libdir/ghc/rts/gmp" + , FPTOOLS_TOP_ABS"/ghc/rts/gmp" # endif #endif @@ -52,12 +52,12 @@ extra-libs: "m" /* for ldexp() */ #endif #ifdef INSTALLING -include-dirs: "$libdir/include" +include-dirs: INCLUDE_DIR # ifdef mingw32_TARGET_OS - , "$libdir/include/mingw" + , INCLUDE_DIR"/mingw" # endif #else /* !INSTALLING */ -include-dirs: "$libdir/ghc/includes" +include-dirs: FPTOOLS_TOP_ABS"/ghc/includes" #endif includes: Stg.h -- 1.7.10.4