1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

One too many )'s breaks 'make clean' with certain versions of make.

This fixes PR1927

This should be pulled into llvm 2.2.

llvm-svn: 46245
This commit is contained in:
Chris Lattner 2008-01-22 05:19:26 +00:00
parent 78780f175b
commit 892727ad35

View File

@ -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)))