diff options
author | Pavel Labath <labath@google.com> | 2016-04-01 12:59:37 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-04-01 12:59:37 +0000 |
commit | f0537825a226c15eef6db5ca50be4640f7471ea1 (patch) | |
tree | 9029ad0c6cfef1434f4573a1c97b9afc573cc765 /lldb/packages/Python/lldbsuite/test/lang/objc | |
parent | b97f4beec44e0658c4d844ae7ac05a79561ec144 (diff) | |
download | bcm5719-llvm-f0537825a226c15eef6db5ca50be4640f7471ea1.tar.gz bcm5719-llvm-f0537825a226c15eef6db5ca50be4640f7471ea1.zip |
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
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/objc')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 01392a8140a..6c5492dade1 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 |