From 93853f4fd8722cc829570ac34808c60a3f5b74d5 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 18 Dec 2009 20:11:46 +0000 Subject: [PATCH] Avoid a failing shell command when cleaning It wasn't fatal, but better to avoid it anyway --- compiler/ghc.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/ghc.mk b/compiler/ghc.mk index c237df7..901b069 100644 --- a/compiler/ghc.mk +++ b/compiler/ghc.mk @@ -423,9 +423,11 @@ compiler_PACKAGE = ghc # below. # The ProjectPatchLevel > 20000000 iff it's a date. If it's e.g. 6.12.1 # then we don't want to remove it +ifneq "$(CLEANING)" "YES" ifeq "$(shell [ $(ProjectPatchLevel) -gt 20000000 ] && echo YES)" "YES" compiler_stage1_VERSION_MUNGED = YES endif +endif ifeq "$(compiler_stage1_VERSION_MUNGED)" "YES" define compiler_PACKAGE_MAGIC -- 1.7.10.4