From 7ae6b34d1d495261a0a562fd62ab091a35019f2b Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Tue, 22 Jan 2008 07:16:09 +0000 Subject: Merge from mainline. One too many )'s breaks 'make clean' with certain versions of make. This fixes PR1927 llvm-svn: 46248 --- llvm/Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules index 5bdd0d3..0f2be650 100644 --- a/llvm/Makefile.rules +++ b/llvm/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))) -- cgit v1.1