1
0
Fork 0

Trim any extra verbocity in the version number.

This commit is contained in:
curt 2007-05-16 16:50:41 +00:00
parent 9a5840f6e7
commit 0e6203a4d2

View file

@ -2,7 +2,7 @@
OSTYPE=`uname -s`
MACHINE=`uname -m`
AUTO_MAKE_VERSION=`automake --version | head -1 | awk '{print $4}' | sed -e 's/\.\([0-9]*\).*/\1/'`
AUTO_MAKE_VERSION=`automake --version | head -1 | awk '{print $4}' | sed -e 's/\.\([0-9]*\).*/\1/' | cut -c1,2`
if test $AUTO_MAKE_VERSION -lt 15; then
echo ""
echo "You need to upgrade to automake version 1.5 or greater."