diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-07-10 16:52:41 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-07-10 16:52:41 +0000 |
commit | 9b51b6fab2b5e1c0fafd39bdd4626323410b2d8b (patch) | |
tree | bdff1b6de5b6fef35c9fd70de313a614f9db8014 /Makefile.common | |
parent | dd6cb6a43b78732f1a136583ccca4e715bae7d71 (diff) |
Move the space separator to where it really belongs: in the print statement, not
in a variable assignment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7141 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common index 907aa87dad..81bfc6d2a2 100644 --- a/Makefile.common +++ b/Makefile.common @@ -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 |