From: Pavel Labath Date: Fri, 1 Apr 2016 12:59:37 +0000 (+0000) Subject: Fix clean rule for a makefile X-Git-Tag: llvmorg-3.9.0-rc1~10258 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f0537825a226c15eef6db5ca50be4640f7471ea1;p=platform%2Fupstream%2Fllvm.git Fix clean rule for a makefile The test was failing on windows because the clean rule (which is executed even if the test is skipped) returned an error there. llvm-svn: 265140 --- diff --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile b/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile index 01392a8..6c5492d 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile +++ b/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile @@ -11,6 +11,6 @@ a.out.stripped: a.out.dSYM clean:: rm -f a.out.stripped - rm -rf *.dSYM + rm -rf $(wildcard *.dSYM) include $(LEVEL)/Makefile.rules