[llvm-commits] CVS: llvm/test/Makefile.tests
Reid Spencer
reid at x10sys.com
Fri Feb 18 12:24:20 PST 2005
Changes in directory llvm/test:
Makefile.tests updated: 1.91 -> 1.92
---
Log message:
Quote the value of the PATH variable so that Cygwin and Windows can have
spaces in path names and not confuse the shell.
---
Diffs of the changes: (+1 -1)
Makefile.tests | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/test/Makefile.tests
diff -u llvm/test/Makefile.tests:1.91 llvm/test/Makefile.tests:1.92
--- llvm/test/Makefile.tests:1.91 Thu Dec 23 21:44:24 2004
+++ llvm/test/Makefile.tests Fri Feb 18 14:24:09 2005
@@ -39,7 +39,7 @@
LLCFLAGS =
FAILURE = $(LLVM_SRC_ROOT)/test/Failure.sh
TESTRUNR = @echo Running test: $<; \
- PATH=$(LLVMTOOLCURRENT):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH) \
+ PATH="$(LLVMTOOLCURRENT):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
$(LLVM_SRC_ROOT)/test/TestRunner.sh
LLCLIBS := $(LLCLIBS) -lm
More information about the llvm-commits
mailing list