# HG changeset patch # User "Yann E. MORIN" # Date 1229713483 0 # Node ID fab1755d2998a73d334228a15d68b745daeccf77 # Parent 29ebc048d33f2c3dcda899cf7dae33ecd17429f8 Fix testing the automake version: - previously, only version with a more-than-two-digits minor would match - make versions starting with major in [2-9] also match /trunk/configure | 4 2 2 0 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -r 29ebc048d33f -r fab1755d2998 configure --- a/configure Tue Dec 16 18:12:34 2008 +0000 +++ b/configure Fri Dec 19 19:04:43 2008 +0000 @@ -41,7 +41,7 @@ bison/ flex/ makeinfo/ -automake/\(GNU automake\) [[:digit:]]+\.[[:digit:]]{2,} +automake/\(GNU automake\) [[:digit:]]+\.[[:digit:]]{2,}|automake/\(GNU automake\) [2-9][[:digit:]]*\. libtool/ curl/|wget/ patch/ @@ -87,7 +87,7 @@ tool_version=$(${tool} --version 2>&1) str=$(echo "${tool_version}" |grep -E "${regexp}" |head -n 1) if [ -z "${str}" ]; then - echo "wrong version string: expecting regexp '${regexp}'" + echo "${where}: wrong version string: expecting regexp '${regexp}'" where="" continue fi