diff options
author | Pavel Labath <labath@google.com> | 2017-05-03 11:27:35 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-05-03 11:27:35 +0000 |
commit | 6b09f9d60347bcf141608fe9767a4eaa9dbd0f7b (patch) | |
tree | b0a866e0ae852cb2174e9fe096838d51da6c9c8f /lldb/packages/Python/lldbsuite/test | |
parent | b2bf741e9aa1dc843d47d9b29c34fd3eb7cdab4a (diff) | |
download | bcm5719-llvm-6b09f9d60347bcf141608fe9767a4eaa9dbd0f7b.tar.gz bcm5719-llvm-6b09f9d60347bcf141608fe9767a4eaa9dbd0f7b.zip |
Windows fix for TestConflictingDefinition makefile
gnuwin32 rm does not like wildcards that match nothing even if we
specify -f (probably because the wildcard expansion happens in-process
there). We could use make $(wildcard) here, but it seems safer to
explicitly list the files here, just like the normal Makefile.rules
does.
llvm-svn: 302013
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile b/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile index 2eea316719e..3d24348618d 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile +++ b/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile @@ -21,4 +21,4 @@ a.out: main.m libTest.dylib libTestExt.dylib .PHONY: clean clean: - rm -rf *.dylib a.out *.o *.dSYM *.d + rm -rf libTest.dylib libTestExt.dylib a.out Test.o TestExt.o libTest.dylib.dSYM libTest.dylib.dSYM |