From 540594e951de302cae3ca587a2a1a18b21468ea9 Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Fri, 23 Aug 2002 07:19:00 +0000 Subject: [PATCH] trivial change allowing LIBTOOL var to specify where libtool lives, just the same as we do for other build tools. --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.' -- 2.47.2