Skip to content

Commit 7ae6b34

Browse files
committed
Merge from mainline.
One too many )'s breaks 'make clean' with certain versions of make. This fixes PR1927 llvm-svn: 46248
1 parent d18515a commit 7ae6b34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/Makefile.rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1457,7 +1457,7 @@ clean-all-local::
14571457
ifndef DISABLE_AUTO_DEPENDENCIES
14581458

14591459
# If its not one of the cleaning targets
1460-
ifneq ($(strip $(filter-out clean clean-local dist-clean,$(MAKECMDGOALS)))),)
1460+
ifneq ($(strip $(filter-out clean clean-local dist-clean,$(MAKECMDGOALS))),)
14611461

14621462
# Get the list of dependency files
14631463
DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))

0 commit comments

Comments
 (0)