diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-22 05:19:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-22 05:19:26 +0000 |
commit | 05a3e8aa4d77c59e4adffaf65d17ff44550d4997 (patch) | |
tree | 0b61bbc3f63ed1cf41b54a6b7132a891e589140a | |
parent | e6b0c0036a64f4be4646230f2510e5b20dc04351 (diff) |
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
-rw-r--r-- | Makefile.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules index 5bdd0d393f..0f2be6503b 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))) |