From: Justin Erenkrantz Date: Mon, 13 May 2002 22:30:02 +0000 (+0000) Subject: Instead of using the hardcoded libtool path of srclib/apr, use the X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e6dad5964910dbcc64a72d85b9e6ba66ee90c66;p=apache 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 --- 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)'