From: Alkis Evlogimenos Date: Mon, 8 Nov 2004 05:35:03 +0000 (+0000) Subject: Override PATH to submake so that all tools are found if the PATH is X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a43efac5455abbb1a7713c3efdd6d34fbc872fc8;p=oota-llvm.git 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 --- diff --git a/Makefile b/Makefile index f633361c31e..d7dd3a3e200 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)