[Lldb-commits] [lldb] r226695 - Fixed a makefile rule used by several tests

Kate Stone katherine.stone at apple.com
Wed Jan 21 11:30:00 PST 2015


Author: kate
Date: Wed Jan 21 13:30:00 2015
New Revision: 226695

URL: http://llvm.org/viewvc/llvm-project?rev=226695&view=rev
Log:
Fixed a makefile rule used by several tests

Now quotes dsymutil path, required when running tests where the toolchain is in a path that contains a space

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=226695&r1=226694&r2=226695&view=diff
==============================================================================
--- lldb/trunk/test/make/Makefile.rules (original)
+++ lldb/trunk/test/make/Makefile.rules Wed Jan 21 13:30:00 2015
@@ -371,7 +371,7 @@ ifeq "$(OS)" "Darwin"
 	$(LD) $(LDFLAGS) $(DYLIB_OBJECTS) -install_name "@executable_path/$(DYLIB_FILENAME)" -dynamiclib -o "$(DYLIB_FILENAME)"
 ifneq "$(MAKE_DSYM)" "NO"
 ifneq "$(DS)" ""
-	$(DS) $(DSFLAGS) "$(DYLIB_FILENAME)"
+	"$(DS)" $(DSFLAGS) "$(DYLIB_FILENAME)"
 endif
 endif
 else





More information about the lldb-commits mailing list