diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-05-26 16:22:57 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-05-30 16:49:18 +0200 |
commit | 47e00ec4a85b492a1e9f8750b4ba12963a10d76a (patch) | |
tree | 8cde5c66600757d3839d6210cc16fd0dccc8fd38 /ghc.mk | |
parent | 4de8028d702abbf74cc2abf0c2bfe0c1ec29c26d (diff) | |
download | haskell-47e00ec4a85b492a1e9f8750b4ba12963a10d76a.tar.gz |
Build system: don't set CLEANING=NO
We only ever check if CLEANING=YES.
[skip ci]
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -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 |