From: Reid Spencer Date: Fri, 18 Feb 2005 20:24:09 +0000 (+0000) Subject: Quote the value of the PATH variable so that Cygwin and Windows can have X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=18c57290331c2c93041cdfab8ed36ad84ef029b4;p=oota-llvm.git Quote the value of the PATH variable so that Cygwin and Windows can have spaces in path names and not confuse the shell. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20241 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Makefile.tests b/test/Makefile.tests index c597de47fab..b46b96da360 100644 --- a/test/Makefile.tests +++ b/test/Makefile.tests @@ -39,7 +39,7 @@ LCXXFLAGS += -O2 -Wall 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