diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-01-22 07:16:09 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-01-22 07:16:09 +0000 |
commit | 1d3515b53b9836e917159fcba2945ae8b2c0ed96 (patch) | |
tree | 724e2ecbc189406eefcbfe70db28666d583e42f0 | |
parent | 9526723ee0f38c1b0dbf92a910063006a7b14aae (diff) |
Merge from mainline.
One too many )'s breaks 'make clean' with certain versions of make.
This fixes PR1927
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_22@46248 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))) |