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
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits