removed checking for autoconf version

This commit is contained in:
fluxgen 2002-10-17 12:12:35 +00:00
parent d0a478bbec
commit 8b9c82b5bf

View file

@ -1,14 +1,4 @@
#!/bin/sh
required_version=52
echo -n "Checking for autoconf version >= "${required_version}"......"
ac_version=`autoconf --version|head -n 1|cut -d . -f 2`
if [ ${ac_version} -lt ${required_version} ]; then
echo "No."
echo "You need to install autoconf version >= "${required_version}
exit 1
fi
echo "Ok."
libtoolize --copy --force --automake || exit 1
rm -f config.cache
aclocal