summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlkis Evlogimenos <alkis@evlogimenos.com>2004-11-08 05:35:03 +0000
committerAlkis Evlogimenos <alkis@evlogimenos.com>2004-11-08 05:35:03 +0000
commita43efac5455abbb1a7713c3efdd6d34fbc872fc8 (patch)
tree1a719312e661a5cb2059a224353d888d85f860b5 /Makefile
parent2e9ac69f8b2bb53cac7e1a22360ae558da9af66c (diff)
downloadllvm-a43efac5455abbb1a7713c3efdd6d34fbc872fc8.tar.gz
llvm-a43efac5455abbb1a7713c3efdd6d34fbc872fc8.tar.bz2
llvm-a43efac5455abbb1a7713c3efdd6d34fbc872fc8.tar.xz
Override PATH to submake so that all tools are found if the PATH is
not set up properly (it also avoids using different tools that happen to be in the path). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17612 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f633361c31..d7dd3a3e20 100644
--- a/Makefile
+++ b/Makefile
@@ -37,4 +37,4 @@ check ::
tools-only: all
check-dejagnu:
- cd test; $(MAKE) check-dejagnu TESTSUITE=$(TESTSUITE)
+ PATH=$(LLVMToolDir):$(PATH) $(MAKE) -C test check-dejagnu TESTSUITE=$(TESTSUITE)