diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-06-22 11:16:34 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-06-22 11:16:34 +0000 |
commit | 64ecde3da5244d080977123c6fc3c8f82d2a6918 (patch) | |
tree | 26b784417688525e4e0c37eb43fa958c6865a48f | |
parent | d7df1559b3f44603e78062e9eed5c13a453aa7f4 (diff) | |
download | haskell-64ecde3da5244d080977123c6fc3c8f82d2a6918.tar.gz |
FIX BUILD (on Windows): Cabal must invoke compiler/stage1/ghc-inplace
not compiler/ghc-inplace, which is a symlink.
-rw-r--r-- | libraries/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/Makefile b/libraries/Makefile index c1a3d2f928..6e4361cee6 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -204,9 +204,9 @@ stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).%: %/setup/Setup --prefix='$$topdir' \ --datadir='$$prefix/share' \ --libsubdir='$(libsubdir)' \ - --with-compiler=../../compiler/ghc-inplace$(dot_bat) \ - --with-hc-pkg=../../utils/ghc-pkg/ghc-pkg-inplace$(dot_bat) \ - --with-hsc2hs=../../utils/hsc2hs/hsc2hs-inplace$(dot_bat) \ + --with-compiler=../../compiler/stage1/ghc-inplace$ \ + --with-hc-pkg=../../utils/ghc-pkg/ghc-pkg-inplace$ \ + --with-hsc2hs=../../utils/hsc2hs/hsc2hs-inplace \ --with-ld=$(LD) \ --datasubdir=ghc \ --haddock-args="--use-contents=../index.html \ |