Skip to content
Permalink
Browse files
Bug fix for sed regex when checking automake version contributed by T…
…om Russo

git-svn-id: http://svn.osgeo.org/qgis/trunk@5734 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Aug 24, 2006
1 parent 3c0e0c9 commit 9d7af64
Showing 1 changed file with 1 addition and 1 deletion.
@@ -22,7 +22,7 @@ if [ "`uname`" = "Darwin" ]; then
fi

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

0 comments on commit 9d7af64

Please sign in to comment.