[Lldb-commits] [lldb] r238859 - Use wildcard instead of relying on shell globbing.

Chaoren Lin chaorenl at google.com
Tue Jun 2 12:07:26 PDT 2015


Author: chaoren
Date: Tue Jun  2 14:07:26 2015
New Revision: 238859

URL: http://llvm.org/viewvc/llvm-project?rev=238859&view=rev
Log:
Use wildcard instead of relying on shell globbing.

Reviewers: clayborg, zturner

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D10194

Modified:
    lldb/trunk/test/expression_command/call-function/Makefile
    lldb/trunk/test/functionalities/data-formatter/rdar-12437442/Makefile

Modified: lldb/trunk/test/expression_command/call-function/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/call-function/Makefile?rev=238859&r1=238858&r2=238859&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/call-function/Makefile (original)
+++ lldb/trunk/test/expression_command/call-function/Makefile Tue Jun  2 14:07:26 2015
@@ -12,4 +12,4 @@ endif
 include $(LEVEL)/Makefile.rules
 
 clean::
-	rm -rf *.o *.d *.dSYM
+	rm -rf $(wildcard *.o *.d *.dSYM)

Modified: lldb/trunk/test/functionalities/data-formatter/rdar-12437442/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/data-formatter/rdar-12437442/Makefile?rev=238859&r1=238858&r2=238859&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/data-formatter/rdar-12437442/Makefile (original)
+++ lldb/trunk/test/functionalities/data-formatter/rdar-12437442/Makefile Tue Jun  2 14:07:26 2015
@@ -9,5 +9,4 @@ include $(LEVEL)/Makefile.rules
 LDFLAGS += -framework Foundation
 
 clean::
-	rm -rf *.o *.d *.dSYM *.log
-	
\ No newline at end of file
+	rm -rf $(wildcard *.o *.d *.dSYM *.log)





More information about the lldb-commits mailing list