From 05a3e8aa4d77c59e4adffaf65d17ff44550d4997 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 22 Jan 2008 05:19:26 +0000 Subject: [PATCH] One too many )'s breaks 'make clean' with certain versions of make. This fixes PR1927 This should be pulled into llvm 2.2. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46245 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.rules b/Makefile.rules index 5bdd0d393fc..0f2be6503b8 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -1457,7 +1457,7 @@ clean-all-local:: ifndef DISABLE_AUTO_DEPENDENCIES # If its not one of the cleaning targets -ifneq ($(strip $(filter-out clean clean-local dist-clean,$(MAKECMDGOALS)))),) +ifneq ($(strip $(filter-out clean clean-local dist-clean,$(MAKECMDGOALS))),) # Get the list of dependency files DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))