[llvm-commits] CVS: llvm/test/Makefile

Chris Lattner lattner at cs.uiuc.edu
Fri Feb 18 12:17:55 PST 2005



Changes in directory llvm/test:

Makefile updated: 1.80 -> 1.81
---
Log message:

Allow dejagnu tests to run on Windows/Cygwin. Quote the value of the PATH
variable so that spaces don't screw it up.


---
Diffs of the changes:  (+1 -1)

 Makefile |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/test/Makefile
diff -u llvm/test/Makefile:1.80 llvm/test/Makefile:1.81
--- llvm/test/Makefile:1.80	Sun Jan  2 22:05:32 2005
+++ llvm/test/Makefile	Fri Feb 18 14:17:44 2005
@@ -28,7 +28,7 @@
 endif
 
 check-local:: site.exp
-	PATH=$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH) \
+	PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \
 	$(RUNTEST) $(RUNTESTFLAGS)
 
 clean::






More information about the llvm-commits mailing list