summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorChristian Thalinger <twisti@complang.tuwien.ac.at>2006-12-15 21:31:30 +0000
committerChristian Thalinger <twisti@complang.tuwien.ac.at>2006-12-15 21:31:30 +0000
commit895210ec6cfd38ce8569bfdfeda1da63fab8e344 (patch)
tree01cff6620f8522dc188679607a4d8a3fed09fc04 /autogen.sh
parentcf134b26bd5142ff2351f9b8bdd8e0574fb4b07a (diff)
downloadclasspath-895210ec6cfd38ce8569bfdfeda1da63fab8e344.tar.gz
2006-12-15 Christian Thalinger <twisti@complang.tuwien.ac.at>
* autogen.sh: Check for all 2.6x autoconf versions.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh
index 9919d15b4..21d2917e0 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -38,17 +38,14 @@ have_autoconf=false
if autoconf --version < /dev/null > /dev/null 2>&1 ; then
autoconf_version=`autoconf --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'`
case $autoconf_version in
- 2.59*)
- have_autoconf=true
- ;;
- 2.60*)
+ 2.59* | 2.6[0-9]* )
have_autoconf=true
;;
esac
fi
if $have_autoconf ; then : ; else
echo
- echo "You must have autoconf 2.59 or 2.60 installed for $PROJECT."
+ echo "You must have autoconf 2.59 or later installed for $PROJECT."
echo "Install the appropriate package for your distribution,"
echo "or get the source tarball at http://ftp.gnu.org/gnu/autoconf/"
DIE=1