diff options
author | Owen Taylor <otaylor@redhat.com> | 2003-04-24 23:54:06 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2003-04-24 23:54:06 +0000 |
commit | 72413c402c41789747536183ce5368baf5480ca9 (patch) | |
tree | 94b2fd3ff6b7169e2c2fc5944bb00887b59e20d5 /autogen.sh | |
parent | 691a5fd50a39954c862cbe1fcfd6d88e6c40d95a (diff) | |
download | gdk-pixbuf-72413c402c41789747536183ce5368baf5480ca9.tar.gz |
Accept libtool-1.5. (#111480)
Thu Apr 24 19:12:05 2003 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_libtool): Accept libtool-1.5. (#111480)
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index 39e7ea4a5..900337cf9 100755 --- a/autogen.sh +++ b/autogen.sh @@ -16,7 +16,7 @@ have_libtool=false if libtool --version < /dev/null > /dev/null 2>&1 ; then libtool_version=`libtoolize --version | libtoolize --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'` case $libtool_version in - 1.4*) + 1.4*|1.5*) have_libtool=true ;; esac |