From 13a29035cc542c5869a2044cb7dc4978870b0357 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 18 Feb 2005 20:17:44 +0000 Subject: [PATCH] Allow dejagnu tests to run on Windows/Cygwin. Quote the value of the PATH variable so that spaces don't screw it up. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20240 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 36bdfc2b632..259f34ccbd5 100644 --- a/test/Makefile +++ b/test/Makefile @@ -28,7 +28,7 @@ RUNTESTFLAGS := --tool $(CLEANED_TESTSUITE) endif check-local:: site.exp - PATH=$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH) \ + PATH="$(LLVMToolDir):$(LLVM_SRC_ROOT)/test/Scripts:$(PATH)" \ $(RUNTEST) $(RUNTESTFLAGS) clean:: -- 2.11.0