Move the space separator to where it really belongs: in the print statement, not
authorMisha Brukman <brukman+llvm@gmail.com>
Thu, 10 Jul 2003 16:52:41 +0000 (16:52 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Thu, 10 Jul 2003 16:52:41 +0000 (16:52 +0000)
in a variable assignment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7141 91177308-0d34-0410-b5e6-96231b3b80d8

Makefile.common
Makefile.rules

index 907aa87dad9c5f45e758b45c41ce29cc54dccaa1..81bfc6d2a223dddd8d0c3f450c52ff3ccad25d38 100644 (file)
@@ -297,7 +297,7 @@ CPPFLAGS += -I$(BUILD_SRC_ROOT)/include -I$(LLVM_SRC_ROOT)/include
 # By default, strip symbol information from executable
 ifndef KEEP_SYMBOLS
 STRIP = $(PLATFORMSTRIPOPTS)
-STRIP_WARN_MSG = "(without symbols) "
+STRIP_WARN_MSG = "(without symbols)"
 endif
 
 # Allow gnu extensions...
@@ -618,7 +618,7 @@ clean::
        $(VERB) $(RM) -f $(TOOLEXENAMES)
 
 $(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(DESTTOOLDEBUG)/.dir
-       @echo ======= Linking $(TOOLNAME) debug executable $(STRIP_WARN_MSG)=======
+       @echo ======= Linking $(TOOLNAME) debug executable $(STRIP_WARN_MSG) =======
        $(VERB) $(LinkG) -o $@ $(ObjectsG) $(LIB_OPTS_G) $(LINK_OPTS) $(LIBS)
 
 $(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(DESTTOOLRELEASE)/.dir
index 907aa87dad9c5f45e758b45c41ce29cc54dccaa1..81bfc6d2a223dddd8d0c3f450c52ff3ccad25d38 100644 (file)
@@ -297,7 +297,7 @@ CPPFLAGS += -I$(BUILD_SRC_ROOT)/include -I$(LLVM_SRC_ROOT)/include
 # By default, strip symbol information from executable
 ifndef KEEP_SYMBOLS
 STRIP = $(PLATFORMSTRIPOPTS)
-STRIP_WARN_MSG = "(without symbols) "
+STRIP_WARN_MSG = "(without symbols)"
 endif
 
 # Allow gnu extensions...
@@ -618,7 +618,7 @@ clean::
        $(VERB) $(RM) -f $(TOOLEXENAMES)
 
 $(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(DESTTOOLDEBUG)/.dir
-       @echo ======= Linking $(TOOLNAME) debug executable $(STRIP_WARN_MSG)=======
+       @echo ======= Linking $(TOOLNAME) debug executable $(STRIP_WARN_MSG) =======
        $(VERB) $(LinkG) -o $@ $(ObjectsG) $(LIB_OPTS_G) $(LINK_OPTS) $(LIBS)
 
 $(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(DESTTOOLRELEASE)/.dir