[Lldb-commits] [lldb] r265140 - Fix clean rule for a makefile
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Fri Apr 1 05:59:37 PDT 2016
Author: labath
Date: Fri Apr 1 07:59:37 2016
New Revision: 265140
URL: http://llvm.org/viewvc/llvm-project?rev=265140&view=rev
Log:
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.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile?rev=265140&r1=265139&r2=265140&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile Fri Apr 1 07:59:37 2016
@@ -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
More information about the lldb-commits
mailing list