From 798998a47325eb9dc976942cc58e94875456e5a9 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Fri, 20 Dec 2013 04:20:23 +0000 Subject: [PATCH] Makefile.unittest: cleanup may fail. Add '-' in the action. llvm-svn: 197777 --- llvm/unittests/Makefile.unittest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/unittests/Makefile.unittest b/llvm/unittests/Makefile.unittest index bf3179d3f292..695bee6d892b 100644 --- a/llvm/unittests/Makefile.unittest +++ b/llvm/unittests/Makefile.unittest @@ -18,7 +18,7 @@ endif # Clean up out-of-tree stray unittests for Lit not to pick one up. .PHONY: cleanup-local cleanup-local: - $(Verb) $(FIND) $(filter-out $(PARALLEL_DIRS), $(wildcard *)) -type f \ + -$(Verb) $(FIND) $(filter-out $(PARALLEL_DIRS), $(wildcard *)) -type f \ -path '*/$(BuildMode)/*Tests$(EXEEXT)' \ -exec rm -f '{}' \;