diff options
author | Simon Marlow <marlowsd@gmail.com> | 2008-07-24 08:09:51 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2008-07-24 08:09:51 +0000 |
commit | 592766aac81d0889b56d4957382bbc6b7dad2d4b (patch) | |
tree | 2e7682f767eaacac48727ae83a97845b2e5dccd3 /mk | |
parent | 228c19b0e8a5af4baa51e720f23202422b22ad10 (diff) | |
download | haskell-592766aac81d0889b56d4957382bbc6b7dad2d4b.tar.gz |
put the inplace GHC in stageN-inplace/ghc instead of stageN-inplace/bin/ghc
just saves a bit of typing
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 3391f1788c..ac704a342b 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -868,9 +868,9 @@ NHC = @NHC@ # tree). We can refer to "this ghc" as $(GHC_INPLACE): GHC_INPLACE = $(GHC_STAGE1) -GHC_STAGE1 = $(GHC_COMPILER_DIR_ABS)/stage1-inplace/bin/ghc -GHC_STAGE2 = $(GHC_COMPILER_DIR_ABS)/stage2-inplace/bin/ghc -GHC_STAGE3 = $(GHC_COMPILER_DIR_ABS)/stage3-inplace/bin/ghc +GHC_STAGE1 = $(GHC_COMPILER_DIR_ABS)/stage1-inplace/ghc +GHC_STAGE2 = $(GHC_COMPILER_DIR_ABS)/stage2-inplace/ghc +GHC_STAGE3 = $(GHC_COMPILER_DIR_ABS)/stage3-inplace/ghc # XXX All those used to have -no-user-package-conf, but then we can't # pass them to Cabal |