From: Reid Spencer Date: Sun, 21 Jan 2007 15:53:18 +0000 (+0000) Subject: Run GenLibDeps.pl with the configured PERL path to handle different install X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5c4db8af71abf3220aa9e961b40a048ab6abd4e0;p=oota-llvm.git 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 --- 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) $< $@ && \