[Lldb-commits] [lldb] r222276 - Allow dsymutil to exists in a path with spaces in it

Enrico Granata egranata at apple.com
Tue Nov 18 14:47:33 PST 2014


Author: enrico
Date: Tue Nov 18 16:47:33 2014
New Revision: 222276

URL: http://llvm.org/viewvc/llvm-project?rev=222276&view=rev
Log:
Allow dsymutil to exists in a path with spaces in it

Modified:
    lldb/trunk/test/make/Makefile.rules

Modified: lldb/trunk/test/make/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/make/Makefile.rules?rev=222276&r1=222275&r2=222276&view=diff
==============================================================================
--- lldb/trunk/test/make/Makefile.rules (original)
+++ lldb/trunk/test/make/Makefile.rules Tue Nov 18 16:47:33 2014
@@ -317,7 +317,7 @@ ifneq "$(DYLIB_ONLY)" "YES"
 $(DSYM) : $(EXE)
 ifeq "$(OS)" "Darwin"
 ifneq "$(MAKE_DSYM)" "NO"
-	$(DS) $(DSFLAGS) -o "$(DSYM)" "$(EXE)"
+	"$(DS)" $(DSFLAGS) -o "$(DSYM)" "$(EXE)"
 endif
 else
 ifeq "$(SPLIT_DEBUG_SYMBOLS)" "YES"





More information about the lldb-commits mailing list