configure: Fix for icotool version checking regex.

This commit is contained in:
Joel Holdsworth 2010-05-16 23:07:33 +01:00 committed by Alexandre Julliard
parent d8688d5846
commit 9571f781fb
2 changed files with 4 additions and 4 deletions

4
configure vendored
View File

@ -5121,8 +5121,8 @@ $as_echo_n "checking for recent enough icotool... " >&6; }
icotool_version=`icotool --version | head -n1`
if test "x$icotool_version" != "x"
then
icotool_version_major=`expr "$icotool_version" : '.* \([0-9]*\).[0-9]*'`
icotool_version_minor=`expr "$icotool_version" : '.* [0-9]*.\([0-9]*\)'`
icotool_version_major=`expr "$icotool_version" : '.* \([0-9]*\)\.[0-9]*'`
icotool_version_minor=`expr "$icotool_version" : '.* [0-9]*\.\([0-9]*\)'`
if test "$icotool_version_major" -eq 0 -a "$icotool_version_minor" -lt 29
then
ICOTOOL=false

View File

@ -296,8 +296,8 @@ then
icotool_version=`icotool --version | head -n1`
if test "x$icotool_version" != "x"
then
icotool_version_major=`expr "$icotool_version" : '.* \([[0-9]]*\).[[0-9]]*'`
icotool_version_minor=`expr "$icotool_version" : '.* [[0-9]]*.\([[0-9]]*\)'`
icotool_version_major=`expr "$icotool_version" : '.* \([[0-9]]*\)\.[[0-9]]*'`
icotool_version_minor=`expr "$icotool_version" : '.* [[0-9]]*\.\([[0-9]]*\)'`
if test "$icotool_version_major" -eq 0 -a "$icotool_version_minor" -lt 29
then
ICOTOOL=false