From: Owen Taylor Date: Tue, 29 May 2001 22:19:46 +0000 (+0000) Subject: Fix GNU sedism (#55430) X-Git-Tag: GLIB_1_3_6~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=20c76af3aea4d7ea168b38e4ffa37303b358ea3d;p=platform%2Fupstream%2Fglib.git Fix GNU sedism (#55430) Tue May 29 18:17:11 2001 Owen Taylor * autogen.sh (have_libtool): Fix GNU sedism (#55430) --- diff --git a/ChangeLog b/ChangeLog index a47b81f..5e290d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue May 29 18:17:11 2001 Owen Taylor + + * autogen.sh (have_libtool): Fix GNU sedism + 2001-05-29 Sebastian Wilhelmi * tests/Makefile.am, tests/qsort-test.c: Add test case for the diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index a47b81f..5e290d6 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,7 @@ +Tue May 29 18:17:11 2001 Owen Taylor + + * autogen.sh (have_libtool): Fix GNU sedism + 2001-05-29 Sebastian Wilhelmi * tests/Makefile.am, tests/qsort-test.c: Add test case for the diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index a47b81f..5e290d6 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,7 @@ +Tue May 29 18:17:11 2001 Owen Taylor + + * autogen.sh (have_libtool): Fix GNU sedism + 2001-05-29 Sebastian Wilhelmi * tests/Makefile.am, tests/qsort-test.c: Add test case for the diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index a47b81f..5e290d6 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,7 @@ +Tue May 29 18:17:11 2001 Owen Taylor + + * autogen.sh (have_libtool): Fix GNU sedism + 2001-05-29 Sebastian Wilhelmi * tests/Makefile.am, tests/qsort-test.c: Add test case for the diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index a47b81f..5e290d6 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,7 @@ +Tue May 29 18:17:11 2001 Owen Taylor + + * autogen.sh (have_libtool): Fix GNU sedism + 2001-05-29 Sebastian Wilhelmi * tests/Makefile.am, tests/qsort-test.c: Add test case for the diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index a47b81f..5e290d6 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,7 @@ +Tue May 29 18:17:11 2001 Owen Taylor + + * autogen.sh (have_libtool): Fix GNU sedism + 2001-05-29 Sebastian Wilhelmi * tests/Makefile.am, tests/qsort-test.c: Add test case for the diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index a47b81f..5e290d6 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,7 @@ +Tue May 29 18:17:11 2001 Owen Taylor + + * autogen.sh (have_libtool): Fix GNU sedism + 2001-05-29 Sebastian Wilhelmi * tests/Makefile.am, tests/qsort-test.c: Add test case for the diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index a47b81f..5e290d6 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,7 @@ +Tue May 29 18:17:11 2001 Owen Taylor + + * autogen.sh (have_libtool): Fix GNU sedism + 2001-05-29 Sebastian Wilhelmi * tests/Makefile.am, tests/qsort-test.c: Add test case for the diff --git a/autogen.sh b/autogen.sh index 8e79c21..e9ac688 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