From: curt Date: Wed, 16 May 2007 16:50:41 +0000 (+0000) Subject: Trim any extra verbocity in the version number. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0e6203a4d2364aacbeae84b1038d0486622a573f;p=flightgear.git Trim any extra verbocity in the version number. --- diff --git a/autogen.sh b/autogen.sh index c4a3061a1..1f99db5a7 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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."