aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-01-03 02:44:54 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-01-03 02:44:54 +0000
commit22e7eddcd63e2cc35edfa6048bcc258c983bb3ba (patch)
tree52c0b5d20cc6efe87abe88fa7375d52c60af4d86
parent10197ff5cd1892f95d6412db881be09509893b9a (diff)
Don't quote the PATH variable value just in case it has spaces in it, as
it breaks "gmake check". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19265 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Makefile.rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 65790880be..133896419a 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -257,8 +257,8 @@ endif
ifndef LOPT
LOPT := $(LLVMToolDir)/opt$(EXEEXT)
endif
-LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
-LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
+LLVMGCCWITHPATH := PATH=$(LLVMToolDir):$(PATH) $(LLVMGCC)
+LLVMGXXWITHPATH := PATH=$(LLVMToolDir):$(PATH) $(LLVMGXX)
#--------------------------------------------------------------------
# Adjust to user's request