From 6b09f9d60347bcf141608fe9767a4eaa9dbd0f7b Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Wed, 3 May 2017 11:27:35 +0000 Subject: 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 --- .../Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/packages/Python/lldbsuite/test') 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 -- cgit v1.2.3