summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2010-01-30 01:33:49 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2010-01-30 01:33:49 +0000
commitec35e91f1d1ef06008da3b60c49d7f0642b9c8db (patch)
tree6f37eaa4350b6be303c36b33ffbb064711d02bfc /autogen.sh
parent7934156fac05ab9295651cba242605ded918554c (diff)
downloadclasspath-ec35e91f1d1ef06008da3b60c49d7f0642b9c8db.tar.gz
Update GNU Classpath build system to handle newer autotools.
2010-01-30 Andrew John Hughes <ahughes@redhat.com> * autogen.sh: Allow libtool 2.* through. * configure.ac: Updated via autoupdate. * m4/lib-ld.m4, * m4/lib-link.m4, * m4/lib-prefix.m4: Drop old libtool macros which result in build failure.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 3e46cff1d..adb8f0c94 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -18,7 +18,7 @@ have_libtool=false
if ${LIBTOOLIZE} --version < /dev/null > /dev/null 2>&1 ; then
libtool_version=`${LIBTOOLIZE} --version | sed 's/^.*[^0-9.]\([0-9]\{1,\}\.[0-9.]\{1,\}\).*/\1/'`
case $libtool_version in
- 1.5*)
+ 1.5*|2.*)
have_libtool=true
;;
esac