diff options
author | niklas <niklas@mm.st> | 2014-07-24 22:02:39 +0200 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-07-28 09:29:18 -0500 |
commit | b126ad3f59a62f91b2e2d92ec9d51d245861b655 (patch) | |
tree | 453b5f5c3488e76de8ebbfb586b155cc9c587280 | |
parent | 8240312ae37a4a1cb89adf13289ac48d7e2aa1d8 (diff) | |
download | haskell-b126ad3f59a62f91b2e2d92ec9d51d245861b655.tar.gz |
Don't clean away inplace/mingw and inplace/perl.
Fixes #9362.
Signed-off-by: Austin Seipp <austin@well-typed.com>
-rw-r--r-- | ghc.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1235,7 +1235,8 @@ clean_files : $(call removeFiles,$(CLEAN_FILES)) # this is here since CLEAN_FILES can't handle folders $(call removeTrees,includes/dist-derivedconstants) - $(call removeTrees,inplace) + $(call removeTrees,inplace/bin) + $(call removeTrees,inplace/lib) .PHONY: clean_libraries clean_libraries: $(patsubst %,clean_libraries/%_dist-install,$(PACKAGES_STAGE1) $(PACKAGES_STAGE2)) |