diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-18 19:39:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-18 19:39:06 +0000 |
commit | fbac3ce589f593afc07cd9f747dd85e16d1291e3 (patch) | |
tree | 6c2a55221a00878c87203465bd8b685e793b1061 /llvm/test/Makefile.tests | |
parent | 882664716810b57615594ff9534f7f8d7ed137de (diff) | |
download | bcm5719-llvm-fbac3ce589f593afc07cd9f747dd85e16d1291e3.tar.gz bcm5719-llvm-fbac3ce589f593afc07cd9f747dd85e16d1291e3.zip |
Move llvm tools to the start of the testrunner path, which allows the llvm 'as'
tool to be found in preference to the system 'as' tool.
llvm-svn: 6775
Diffstat (limited to 'llvm/test/Makefile.tests')
-rw-r--r-- | llvm/test/Makefile.tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Makefile.tests b/llvm/test/Makefile.tests index 3b4bbaf871b..cedeef81c87 100644 --- a/llvm/test/Makefile.tests +++ b/llvm/test/Makefile.tests @@ -53,7 +53,7 @@ LCCFLAGS += -O2 -Wall LCXXFLAGS += -O2 -Wall LLCFLAGS = FAILURE = $(LEVEL)/test/Failure.sh -TESTRUNR = PATH=$(PATH):$(LLVMTOOLCURRENT) $(LEVEL)/test/TestRunner.sh +TESTRUNR = PATH=$(LLVMTOOLCURRENT):$(PATH) $(LEVEL)/test/TestRunner.sh # Native Tool Definitions NATGCC = $(CC) |