From 64ecde3da5244d080977123c6fc3c8f82d2a6918 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Fri, 22 Jun 2007 11:16:34 +0000 Subject: [PATCH] FIX BUILD (on Windows): Cabal must invoke compiler/stage1/ghc-inplace not compiler/ghc-inplace, which is a symlink. --- libraries/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/Makefile b/libraries/Makefile index c1a3d2f..6e4361c 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 \ -- 1.7.10.4