Skip to content
This repository has been archived by the owner on Apr 23, 2020. It is now read-only.

Commit

Permalink
Merge from mainline.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
tlattner committed Jan 22, 2008
1 parent 9526723 commit 1d3515b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.rules
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down

0 comments on commit 1d3515b

Please sign in to comment.