diff options
author | Simon Marlow <marlowsd@gmail.com> | 2012-04-16 14:54:45 +0100 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-04-25 14:04:22 +0100 |
commit | 84d79a2a1f5aa16fffbc1451d229930abf8da36b (patch) | |
tree | 7509d6c4a03e2b9993b1274d0d9ff13f98aa8a80 /ghc.mk | |
parent | 2316a90da6e78349874a181baa762ef60c80333e (diff) | |
download | haskell-84d79a2a1f5aa16fffbc1451d229930abf8da36b.tar.gz |
distclean was removing ghc-pwd/dist, should be ghc-pwd/dist-boot
This has been causing bloat in the src dist for ages.
Noticed while looking at #6009, but I don't think this is the bug
(./configure always removes ghc-pwd/dist-boot before building ghc-pwd)
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1234,7 +1234,7 @@ distclean : clean $(call removeFiles,libraries/process/include/HsProcessConfig.h) $(call removeFiles,libraries/unix/include/HsUnixConfig.h) $(call removeFiles,libraries/old-time/include/HsTimeConfig.h) - $(call removeTrees,utils/ghc-pwd/dist) + $(call removeTrees,utils/ghc-pwd/dist-boot) $(call removeTrees,inplace) $(call removeTrees,$(patsubst %, libraries/%/autom4te.cache, $(PACKAGES_STAGE1) $(PACKAGES_STAGE2))) |