summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Miedema <thomasmiedema@gmail.com>2015-05-26 16:22:57 +0200
committerThomas Miedema <thomasmiedema@gmail.com>2015-05-30 16:49:18 +0200
commit47e00ec4a85b492a1e9f8750b4ba12963a10d76a (patch)
tree8cde5c66600757d3839d6210cc16fd0dccc8fd38
parent4de8028d702abbf74cc2abf0c2bfe0c1ec29c26d (diff)
downloadhaskell-47e00ec4a85b492a1e9f8750b4ba12963a10d76a.tar.gz
Build system: don't set CLEANING=NO
We only ever check if CLEANING=YES. [skip ci]
-rw-r--r--ghc.mk8
1 files changed, 1 insertions, 7 deletions
diff --git a/ghc.mk b/ghc.mk
index 8ce26d2e75..3e7372a5bd 100644
--- a/ghc.mk
+++ b/ghc.mk
@@ -100,10 +100,6 @@ else
$(error Make has restarted itself $(MAKE_RESTARTS) times; is there a makefile bug? See http://ghc.haskell.org/trac/ghc/wiki/Building/Troubleshooting#Makehasrestarteditself3timesisthereamakefilebug for details)
endif
-ifneq "$(CLEANING)" "YES"
-CLEANING = NO
-endif
-
# -----------------------------------------------------------------------------
# Misc GNU make utils
@@ -263,15 +259,13 @@ include rules/cmm-objs.mk
# Suffix rules cause "make clean" to fail on Windows (trac #3233)
# so we don't make any when cleaning.
ifneq "$(CLEANING)" "YES"
-
include rules/hs-suffix-rules-srcdir.mk
include rules/hs-suffix-way-rules-srcdir.mk
include rules/hs-suffix-way-rules.mk
include rules/hi-rule.mk
include rules/c-suffix-rules.mk
include rules/cmm-suffix-rules.mk
-
-endif # CLEANING=YES
+endif
# -----------------------------------------------------------------------------
# Building package-data.mk files from .cabal files