[Lldb-commits] [lldb] r255568 - [Test] Addresses failing test when path to make contains spaces
Kate Stone via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 14 14:59:26 PST 2015
Author: kate
Date: Mon Dec 14 16:59:26 2015
New Revision: 255568
URL: http://llvm.org/viewvc/llvm-project?rev=255568&view=rev
Log:
[Test] Addresses failing test when path to make contains spaces
Modified:
lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk?rev=255568&r1=255567&r2=255568&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk Mon Dec 14 16:59:26 2015
@@ -17,7 +17,7 @@ include $(LEVEL)/Makefile.rules
$(DYLIB_FILENAME): lib_b
lib_b:
- $(MAKE) -f b.mk
+ "$(MAKE)" -f b.mk
clean::
- $(MAKE) -f b.mk clean
+ "$(MAKE)" -f b.mk clean
More information about the lldb-commits
mailing list