Fixed a makefile rule used by several tests
authorKate Stone <katherine.stone@apple.com>
Wed, 21 Jan 2015 19:30:00 +0000 (19:30 +0000)
committerKate Stone <katherine.stone@apple.com>
Wed, 21 Jan 2015 19:30:00 +0000 (19:30 +0000)
Now quotes dsymutil path, required when running tests where the toolchain is in a path that contains a space

llvm-svn: 226695

lldb/test/make/Makefile.rules

index 6915030..cba9f03 100644 (file)
@@ -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