diff options
author | simonpj@microsoft.com <unknown> | 2010-08-23 13:34:39 +0000 |
---|---|---|
committer | simonpj@microsoft.com <unknown> | 2010-08-23 13:34:39 +0000 |
commit | 712ea2a4c7b7d0e90f9651ce9618dd31bc07562f (patch) | |
tree | 58d17697be10ab42e6926a6255414f5bda5f10d1 /ghc.mk | |
parent | 5cd20c4026ffecda7822979b7de87e6a6a6fef20 (diff) | |
download | haskell-712ea2a4c7b7d0e90f9651ce9618dd31bc07562f.tar.gz |
DPH should not even be built if GhcProfiled
It's not just when cleaning!
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -351,7 +351,7 @@ $(foreach pkg,$(EXTRA_PACKAGES),$(eval $(call addPackage,$(pkg)))) ifneq "$(BootingFromHc)" "YES" -ifneq "$(CLEANING) $(GhcProfiled)" "NO YES" +ifneq "$(GhcProfiled)" "YES" # DPH uses Template Haskell, and Template Haskell doesn't work # with a profiled compiler. So if stage-2 is profile, don't build DPH PACKAGES_STAGE2 += \ |