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

llvm-svn: 226695
This commit is contained in:
Kate Stone 2015-01-21 19:30:00 +00:00
parent 53d382fcc7
commit 2136ace961
1 changed files with 1 additions and 1 deletions

View 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