From 2136ace9611da46844e2d3d53344c32ae9221050 Mon Sep 17 00:00:00 2001 From: Kate Stone Date: Wed, 21 Jan 2015 19:30:00 +0000 Subject: [PATCH] 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 --- lldb/test/make/Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/make/Makefile.rules b/lldb/test/make/Makefile.rules index 6915030..cba9f03 100644 --- a/lldb/test/make/Makefile.rules +++ b/lldb/test/make/Makefile.rules @@ -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 -- 2.7.4