summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-08-17 23:34:13 +0000
committerDavid Schleef <ds@schleef.org>2003-08-17 23:34:13 +0000
commit9b999ac27b26a262b6ff0ef5af2bd2309b47723c (patch)
tree6e09ffef623b6717db5296b98843290327c25f96 /autogen.sh
parentdd74664e502a1ce4c43d1fb80a9ccce38df22415 (diff)
Find correct name for libtoolize
Original commit message from CVS: Find correct name for libtoolize
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 f37285b7b..f8f8c96e4 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -29,7 +29,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" \
"ftp://ftp.gnu.org/pub/gnu/automake/" 1 6 || 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
@@ -56,7 +56,7 @@ toplevel_check $srcfile
if test -f acinclude.m4; then rm acinclude.m4; fi
tool_run "$aclocal" "-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