diff options
author | Ian Lynagh <igloo@earth.li> | 2011-01-16 02:00:35 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-01-16 02:00:35 +0000 |
commit | 84e2f72a6326241c4f2fb50f1cb11c2f324e3e38 (patch) | |
tree | 9ff844914743adb382cf79207d25fbea1b30040f /ghc.mk | |
parent | ac77a1eba3a7673241f371ce4aa6bf56323383bc (diff) | |
download | haskell-84e2f72a6326241c4f2fb50f1cb11c2f324e3e38.tar.gz |
Simplify, and future-proof, a dependency in the build system
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -738,11 +738,7 @@ $(eval $(call build-package,libraries/bin-package-db,dist-boot,0)) fixed_pkg_prev= $(foreach pkg,$(STAGE0_PACKAGES),$(eval $(call fixed_pkg_dep,$(pkg),dist-boot))) -compiler/stage1/package-data.mk : \ - libraries/Cabal/dist-boot/package-data.mk \ - libraries/hpc/dist-boot/package-data.mk \ - libraries/extensible-exceptions/dist-boot/package-data.mk \ - libraries/bin-package-db/dist-boot/package-data.mk +compiler/stage1/package-data.mk : $(fixed_pkg_prev) # Make sure we have all the GHCi libs by the time we've built # ghc-stage2. DPH includes a bit of Template Haskell which needs the |