aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2005-01-03 17:42:57 +0000
committerJohn Criswell <criswell@uiuc.edu>2005-01-03 17:42:57 +0000
commitf5629d037feca2b574784efc3a242e8a2f726e10 (patch)
tree1f2f3893fe7fde7429bceabffab9390d07feb781
parent447d5bba2790398939a5d39bdb0a8de36cbeba85 (diff)
Quote the paths and not the assignment of the PATH variable.
This seems to make things happier. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19276 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 133896419a..65790880be 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