diff options
author | Ian Lynagh <igloo@earth.li> | 2010-05-09 13:05:11 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-05-09 13:05:11 +0000 |
commit | c24af7168babfe2a7c231c1c7a61b74d952aee84 (patch) | |
tree | 632be3dc50e4acf5b1dab81af9a20896468f2640 /rules/build-prog.mk | |
parent | 7eb456b97c5a9911981afa172acf9ef50b75f9fa (diff) | |
download | haskell-c24af7168babfe2a7c231c1c7a61b74d952aee84.tar.gz |
Don't include inter-package dependencies when compiling with stage 0; #4031
This fixes a problem when building with GHC 6.12 on Windows, where
dependencies on stage 0 (bootstrapping compiler) packages have absolute
paths c:/ghc/..., and make gets confused by the colon.
Diffstat (limited to 'rules/build-prog.mk')
-rw-r--r-- | rules/build-prog.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/build-prog.mk b/rules/build-prog.mk index 9674bf602b..e07290772b 100644 --- a/rules/build-prog.mk +++ b/rules/build-prog.mk @@ -92,7 +92,7 @@ $(call c-sources,$1,$2) $1_$2_depfile_base = $1/$2/build/.depend -$(call build-dependencies,$1,$2) +$(call build-dependencies,$1,$2,$3) # --- IMPLICIT RULES |