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

Misha Brukman brukman at cs.uiuc.edu
Mon Jul 7 17:28:01 PDT 2003


Changes in directory llvm:

Makefile.common updated: 1.96 -> 1.97

---
Log message:

Removed an extra slash that appears in the path name when these variables are
combined with a '/' separating them.


---
Diffs of the changes:

Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.96 llvm/Makefile.common:1.97
--- llvm/Makefile.common:1.96	Tue Jul  1 09:52:28 2003
+++ llvm/Makefile.common	Mon Jul  7 17:27:05 2003
@@ -89,7 +89,7 @@
 # Determine the path of the source tree relative from $HOME (the mythical
 # home directory).
 #
-HOME_OBJ_ROOT := $(OBJ_ROOT)/$(patsubst $(HOME)%,%,$(BUILD_SRC_ROOT))
+HOME_OBJ_ROOT := $(OBJ_ROOT)$(patsubst $(HOME)%,%,$(BUILD_SRC_ROOT))
 
 #
 # Set the object build directory.  Its location depends upon the source path





More information about the llvm-commits mailing list