[Lldb-commits] [lldb] r302013 - Windows fix for TestConflictingDefinition makefile

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed May 3 04:27:37 PDT 2017


Author: labath
Date: Wed May  3 06:27:35 2017
New Revision: 302013

URL: http://llvm.org/viewvc/llvm-project?rev=302013&view=rev
Log:
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.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile?rev=302013&r1=302012&r2=302013&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile Wed May  3 06:27:35 2017
@@ -21,4 +21,4 @@ a.out: main.m libTest.dylib libTestExt.d
 .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




More information about the lldb-commits mailing list