[llvm-commits] [llvm] r46248 - /llvm/branches/release_22/Makefile.rules

Tanya Lattner tonic at nondot.org
Mon Jan 21 23:16:09 PST 2008


Author: tbrethou
Date: Tue Jan 22 01:16:09 2008
New Revision: 46248

URL: http://llvm.org/viewvc/llvm-project?rev=46248&view=rev
Log:
Merge from mainline.
One too many )'s breaks 'make clean' with certain versions of make.
This fixes PR1927


Modified:
    llvm/branches/release_22/Makefile.rules

Modified: llvm/branches/release_22/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_22/Makefile.rules?rev=46248&r1=46247&r2=46248&view=diff

==============================================================================
--- llvm/branches/release_22/Makefile.rules (original)
+++ llvm/branches/release_22/Makefile.rules Tue Jan 22 01:16:09 2008
@@ -1457,7 +1457,7 @@
 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)))





More information about the llvm-commits mailing list