summaryrefslogtreecommitdiff
path: root/ghc.mk
diff options
context:
space:
mode:
authorThomas Miedema <thomasmiedema@gmail.com>2015-10-30 20:22:24 +0100
committerBen Gamari <ben@smart-cactus.org>2015-10-30 20:22:25 +0100
commit59e728bc0b47116e3c9a8b21b14dc3198531b9a9 (patch)
treecbeca1d52f2eb69ba1df117bf3b78844699f7ba2 /ghc.mk
parentf78b477bd0ba1f85089c515259c9e3145abd1f7b (diff)
downloadhaskell-59e728bc0b47116e3c9a8b21b14dc3198531b9a9.tar.gz
Testsuite: suggest quoting $(TEST_HC)
Test Plan: it works Reviewers: bgamari, rwbarton, austin Reviewed By: austin Subscribers: rwbarton Differential Revision: https://phabricator.haskell.org/D1377
Diffstat (limited to 'ghc.mk')
-rw-r--r--ghc.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/ghc.mk b/ghc.mk
index 595356a93b..bf521b2008 100644
--- a/ghc.mk
+++ b/ghc.mk
@@ -1380,8 +1380,10 @@ distclean : clean
# Not sure why this is being cleaned here.
$(call removeTrees,includes/dist-derivedconstants)
-# Finally, clean the inplace tree.
- $(call removeTrees,inplace)
+# Also clean Windows-only inplace directories.
+# Don't delete 'inplace' itself, it contains source files.
+ $(call removeTrees,inplace/mingw)
+ $(call removeTrees,inplace/perl)
maintainer-clean : distclean
$(call removeFiles,configure mk/config.h.in)