Skip to content

Commit 7caca85

Browse files
author
timlinux
committedAug 24, 2006
Bug fix for sed regex when checking automake version contributed by Tom Russo
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5734 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 373d555 commit 7caca85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎autogen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if [ "`uname`" = "Darwin" ]; then
2222
fi
2323

2424
# Check automake version
25-
AM_VERSION=`automake --version | sed -n -e 's#[^0-9]* \([0-9]*\)\.\([0-9]*\)*\.*\(\([0-9]*\)\).*$#\1 \2 \3#p'`
25+
AM_VERSION=`automake --version | sed -n -e 's#[^0-9]* \([0-9]*\)\.\([0-9]*\)\.*\([0-9]*\).*$#\1 \2 \3#p'`
2626
AM_V1=`echo $AM_VERSION | awk '{print $1}'`
2727
AM_V2=`echo $AM_VERSION | awk '{print $2}'`
2828
AM_V3=`echo $AM_VERSION | awk '{if ($NF > 2) print $3; else print "0";}'`

0 commit comments

Comments
 (0)
Please sign in to comment.