From 0e6203a4d2364aacbeae84b1038d0486622a573f Mon Sep 17 00:00:00 2001 From: curt Date: Wed, 16 May 2007 16:50:41 +0000 Subject: [PATCH] Trim any extra verbocity in the version number. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." -- 2.39.5