From 6e039e561612df3dba5bd407ed0b1cb9b6c2eb91 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 29 Oct 2004 06:42:38 +0000 Subject: [PATCH] Make sure the LLVM_CONFIG_DIR environment variable is set so we don't get error messages from the compiler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17335 91177308-0d34-0410-b5e6-96231b3b80d8 --- projects/Stacker/samples/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/Stacker/samples/Makefile b/projects/Stacker/samples/Makefile index 2d4c40cbbbd..d5b278061cc 100644 --- a/projects/Stacker/samples/Makefile +++ b/projects/Stacker/samples/Makefile @@ -14,7 +14,7 @@ EXTRA_DIST = fibonacci.st hello.st prime.st goof.st SAMPLES = fibonacci hello prime goof -LLVMC_EXEC = $(TOOLDIR)/llvmc +LLVMC_EXEC = LLVM_CONFIG_DIR=$(BUILD_SRC_ROOT)/tools/llvmc $(TOOLDIR)/llvmc all :: $(SAMPLES) -- 2.34.1