Removed an extra slash that appears in the path name when these variables are

combined with a '/' separating them.

llvm-svn: 7121
This commit is contained in:
Misha Brukman 2003-07-07 22:27:05 +00:00
parent ea6e7a5d72
commit 6d1871c28b
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ endif
# 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

View File

@ -89,7 +89,7 @@ endif
# 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