forked from OSchip/llvm-project
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:
parent
53d382fcc7
commit
2136ace961
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue