From a43efac5455abbb1a7713c3efdd6d34fbc872fc8 Mon Sep 17 00:00:00 2001 From: Alkis Evlogimenos Date: Mon, 8 Nov 2004 05:35:03 +0000 Subject: [PATCH] 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.34.1