From: Jeff Cohen Date: Mon, 3 Jan 2005 02:44:54 +0000 (+0000) Subject: Don't quote the PATH variable value just in case it has spaces in it, as X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=22e7eddcd63e2cc35edfa6048bcc258c983bb3ba;p=oota-llvm.git 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 --- diff --git a/Makefile.rules b/Makefile.rules index 65790880be5..133896419a6 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