[llvm-commits] CVS: llvm/Makefile.common

Misha Brukman brukman at cs.uiuc.edu
Thu Jul 10 11:53:00 PDT 2003


Changes in directory llvm:

Makefile.common updated: 1.97 -> 1.98

---
Log message:

Move the space separator to where it really belongs: in the print statement, not
in a variable assignment.


---
Diffs of the changes:

Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.97 llvm/Makefile.common:1.98
--- llvm/Makefile.common:1.97	Mon Jul  7 17:27:05 2003
+++ llvm/Makefile.common	Thu Jul 10 11:52:41 2003
@@ -297,7 +297,7 @@
 # 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 @@
 	$(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





More information about the llvm-commits mailing list