Fix up bootstrap for autoconf 2.52c (by yanking the c)

This commit is contained in:
Jeff Teunissen 2001-08-20 16:36:48 +00:00
parent cf4ca286f0
commit b1af752cf3

View file

@ -1,13 +1,9 @@
#! /bin/sh
# Check Autoconf version
v250=`which autoconf2.50 2> /dev/null`
if [ -x "$v250" ]; then
rm -f configure.in
else
if [ -x `which autoconf` ]; then
if [ -x `which autoconf` ]; then
AC_VER=`autoconf --version | head -1 | sed 's/^[^0-9]*//i'`
AC_VER_MAJOR=`echo $AC_VER | cut -f1 -d'.'`
AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.'`
AC_VER_MINOR=`echo $AC_VER | cut -f2 -d'.' | sed 's/[^0-9]*$//i`
if [ "$AC_VER_MAJOR" -lt "2" ]; then
echo "Autoconf 2.13 or greater needed to build configure."
@ -27,10 +23,9 @@ else
else
rm -f configure.in
fi
else
else
echo Autoconf not found. QuakeForge CVS requires autoconf to bootstrap itself.
exit 1
fi
fi
aclocal && autoheader && libtoolize --automake && automake --add-missing && autoconf