diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-05-29 22:18:48 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-05-29 22:18:48 +0000 |
commit | 87403457fabc951ad6dd0ab390e3ef76cfbbbf27 (patch) | |
tree | 4b54b430390d88f59dd250ca2f126ce231b8648f /autogen.sh | |
parent | b6dde32695204179fd69824512df1c810009677e (diff) | |
download | gtk+-87403457fabc951ad6dd0ab390e3ef76cfbbbf27.tar.gz |
Fix GNU sedism (#55430)
Tue May 29 18:17:11 2001 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_libtool): Fix GNU sedism (#55430)
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 3fe38312a8..5a2e43be64 100755 --- a/autogen.sh +++ b/autogen.sh @@ -14,7 +14,7 @@ DIE=0 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.]\+\).*/\1/'` + libtool_version=`libtoolize --version | libtoolize --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'` case $libtool_version in 1.4*) have_libtool=true |