diff options
author | Justin Erenkrantz <jerenkrantz@apache.org> | 2002-05-14 00:30:02 +0200 |
---|---|---|
committer | Justin Erenkrantz <jerenkrantz@apache.org> | 2002-05-14 00:30:02 +0200 |
commit | 8a83dc69e5204d781b07068abe39c760209a810d (patch) | |
tree | c9b96875ce3df3606cd05845fb6a4432cdb0823e /configure.in | |
parent | Instead of hardcoding srclib/apr{-util} in the INCLUDES, get the information (diff) | |
download | apache2-8a83dc69e5204d781b07068abe39c760209a810d.tar.xz apache2-8a83dc69e5204d781b07068abe39c760209a810d.zip |
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
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files 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)' |