[llvm-commits] CVS: llvm/Makefile.rules
John Criswell
criswell at cs.uiuc.edu
Mon Jan 3 09:43:11 PST 2005
Changes in directory llvm:
Makefile.rules updated: 1.286 -> 1.287
---
Log message:
Quote the paths and not the assignment of the PATH variable.
This seems to make things happier.
---
Diffs of the changes: (+2 -2)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.286 llvm/Makefile.rules:1.287
--- llvm/Makefile.rules:1.286 Mon Jan 3 11:41:56 2005
+++ llvm/Makefile.rules Mon Jan 3 11:42:57 2005
@@ -257,8 +257,8 @@
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
More information about the llvm-commits
mailing list