From: Nathan Scott Date: Fri, 23 Aug 2002 07:19:00 +0000 (+0000) Subject: trivial change allowing LIBTOOL var to specify where libtool lives, just X-Git-Tag: v2.3.0~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=540594e951de302cae3ca587a2a1a18b21468ea9;p=thirdparty%2Fxfsprogs-dev.git trivial change allowing LIBTOOL var to specify where libtool lives, just the same as we do for other build tools. --- diff --git a/configure.in b/configure.in index e147d4405..f6a09472e 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ AC_SUBST(pkg_name) # defaults (to change paths and/or executables, build parameters, etc): # # DEBUG OPTIMIZER MAKE CC LD TAR ZIP RPM AWK SED ECHO -# MALLOCLIB DISTRIBUTION PACKAGE_BUILDER +# LIBTOOL MALLOCLIB DISTRIBUTION PACKAGE_BUILDER # DEBUG=${DEBUG:-'-DDEBUG'} # -DNDEBUG @@ -120,7 +120,7 @@ echo=$ECHO AC_SUBST(echo) dnl ensure libtool is installed -AC_PATH_PROG(LIBTOOL, libtool,,/usr/bin) +test -z "$LIBTOOL" && AC_PATH_PROG(LIBTOOL, libtool,,/usr/bin) if test "$LIBTOOL" = ""; then echo echo 'FATAL ERROR: libtool does not seem to be installed.'