[llvm-commits] [llvm] r46245 - /llvm/trunk/Makefile.rules

Chris Lattner sabre at nondot.org
Mon Jan 21 21:19:27 PST 2008


Author: lattner
Date: Mon Jan 21 23:19:26 2008
New Revision: 46245

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

This should be pulled into llvm 2.2.

Modified:
    llvm/trunk/Makefile.rules

Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=46245&r1=46244&r2=46245&view=diff

==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Mon Jan 21 23:19:26 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