From 5c4db8af71abf3220aa9e961b40a048ab6abd4e0 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sun, 21 Jan 2007 15:53:18 +0000 Subject: [PATCH] Run GenLibDeps.pl with the configured PERL path to handle different install locations for Perl on different systems. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33424 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-config/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/llvm-config/Makefile b/tools/llvm-config/Makefile index d885c163929..855a4aed64a 100644 --- a/tools/llvm-config/Makefile +++ b/tools/llvm-config/Makefile @@ -35,7 +35,7 @@ GenLibDeps = $(PROJ_SRC_ROOT)/utils/GenLibDeps.pl $(LibDepsTemp): $(GenLibDeps) $(LibDir) $(wildcard $(LibDir)/*.a $(LibDir)/*.o) $(Echo) "Regenerating LibDeps.txt.tmp" - $(Verb) $(GenLibDeps) -flat $(LibDir) $(NM_PATH) > $(LibDepsTemp) + $(Verb) $(PERL) $(GenLibDeps) -flat $(LibDir) $(NM_PATH) > $(LibDepsTemp) $(LibDeps): $(LibDepsTemp) $(Verb) $(CMP) -s $@ $< || ( $(CP) $< $@ && \