From: John Criswell Date: Mon, 3 Jan 2005 17:42:57 +0000 (+0000) Subject: Quote the paths and not the assignment of the PATH variable. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f5629d037feca2b574784efc3a242e8a2f726e10;p=oota-llvm.git 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 --- diff --git a/Makefile.rules b/Makefile.rules index 133896419a6..65790880be5 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