diff options
author | John Criswell <criswell@uiuc.edu> | 2005-01-03 17:42:57 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2005-01-03 17:42:57 +0000 |
commit | f5629d037feca2b574784efc3a242e8a2f726e10 (patch) | |
tree | 1f2f3893fe7fde7429bceabffab9390d07feb781 | |
parent | 447d5bba2790398939a5d39bdb0a8de36cbeba85 (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.rules | 4 |
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 |