summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-08-17 23:35:38 +0000
committerDavid Schleef <ds@schleef.org>2003-08-17 23:35:38 +0000
commit95c7066310433f1b5e67f50329908f2ea17ad9c5 (patch)
tree66e1831507d5b0f7ba588b8d62005352aa57bbcd /autogen.sh
parentc7ca0105436c70798d55c8d5b9aaad722781165c (diff)
Handle libtoolize with alternate names
Original commit message from CVS: Handle libtoolize with alternate names
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 8230b903..3dcc38f9 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -35,7 +35,7 @@ version_check "autoconf" "$AUTOCONF autoconf autoconf-2.54 autoconf-2.53 autocon
"ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 52 || DIE=1
version_check "automake" "$AUTOMAKE automake automake-1.7 automake-1.6 automake-1.5" \
"ftp://ftp.gnu.org/pub/gnu/automake/" 1 5 || DIE=1
-version_check "libtool" "" \
+version_check "libtoolize" "libtoolize libtoolize14" \
"ftp://ftp.gnu.org/pub/gnu/libtool/" 1 4 0 || DIE=1
version_check "pkg-config" "" \
"http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
@@ -60,7 +60,7 @@ fi
toplevel_check $srcfile
tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
-tool_run "libtoolize" "--copy --force"
+tool_run "$libtoolize" "--copy --force"
tool_run "$autoheader"
# touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo