From 1e6dad5964910dbcc64a72d85b9e6ba66ee90c66 Mon Sep 17 00:00:00 2001 From: Justin Erenkrantz Date: Mon, 13 May 2002 22:30:02 +0000 Subject: [PATCH] Instead of using the hardcoded libtool path of srclib/apr, use the output of apr-config --apr-libtool. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95072 13f79535-47bb-0310-9956-ffa450edef68 --- configure.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index c83dc1aeae..789ff7e5d7 100644 --- a/configure.in +++ b/configure.in @@ -140,8 +140,9 @@ case $host in if test "x$LTFLAGS" = "x"; then LTFLAGS='--silent' fi - LIBTOOL='$(SHELL) $(top_builddir)/srclib/apr/libtool $(LTFLAGS)' - libtoolversion=`$abs_builddir/srclib/apr/libtool --version` + my_libtool=`$apr_config --apr-libtool` + LIBTOOL="$my_libtool \$(LTFLAGS)" + libtoolversion=`$my_libtool --version` case $libtoolversion in *1.4*) SH_LIBTOOL='$(LIBTOOL)' -- 2.50.1