[llvm-commits] CVS: llvm/tools/llvm-config/Makefile
Reid Spencer
reid at x10sys.com
Sun Jan 21 07:53:33 PST 2007
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.21 -> 1.22
---
Log message:
Run GenLibDeps.pl with the configured PERL path to handle different install
locations for Perl on different systems.
---
Diffs of the changes: (+1 -1)
Makefile | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/tools/llvm-config/Makefile
diff -u llvm/tools/llvm-config/Makefile:1.21 llvm/tools/llvm-config/Makefile:1.22
--- llvm/tools/llvm-config/Makefile:1.21 Mon Jan 8 20:38:29 2007
+++ llvm/tools/llvm-config/Makefile Sun Jan 21 09:53:18 2007
@@ -35,7 +35,7 @@
$(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) $< $@ && \
More information about the llvm-commits
mailing list