From 6d1871c28b0d02a8cf2e5bc4136e9734b070bbb3 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Mon, 7 Jul 2003 22:27:05 +0000 Subject: [PATCH] Removed an extra slash that appears in the path name when these variables are combined with a '/' separating them. llvm-svn: 7121 --- llvm/Makefile.common | 2 +- llvm/Makefile.rules | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/Makefile.common b/llvm/Makefile.common index 94db697e93e2..907aa87dad9c 100644 --- a/llvm/Makefile.common +++ b/llvm/Makefile.common @@ -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 diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules index 94db697e93e2..907aa87dad9c 100644 --- a/llvm/Makefile.rules +++ b/llvm/Makefile.rules @@ -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