aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2008-01-22 07:16:09 +0000
committerTanya Lattner <tonic@nondot.org>2008-01-22 07:16:09 +0000
commit7ae6b34d1d495261a0a562fd62ab091a35019f2b (patch)
tree1d1aabf99449c77b1b7f3070b834d8acca5f9d82
parentd18515a257d38c1a133f39267c0f50e52a13baa4 (diff)
downloadllvm-7ae6b34d1d495261a0a562fd62ab091a35019f2b.zip
llvm-7ae6b34d1d495261a0a562fd62ab091a35019f2b.tar.gz
llvm-7ae6b34d1d495261a0a562fd62ab091a35019f2b.tar.bz2
Merge from mainline.
One too many )'s breaks 'make clean' with certain versions of make. This fixes PR1927 llvm-svn: 46248
-rw-r--r--llvm/Makefile.rules2
1 files changed, 1 insertions, 1 deletions
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)))