# HG changeset patch # User "Yann E. MORIN" # Date 1255185852 -7200 # Node ID 2f44fac6b5143f7b14f5367209c9df9b1102298e # Parent 1d43b65599a4b869d83d4db67b9715b1298d74f7 configure: force using the C locale to check messages diff -r 1d43b65599a4 -r 2f44fac6b514 configure --- a/configure Sat Oct 10 16:41:12 2009 +0200 +++ b/configure Sat Oct 10 16:44:12 2009 +0200 @@ -130,7 +130,10 @@ printf "no\n" continue elif [ -n "${ver}" ]; then - str=$( "${where}" --version 2>&1 |grep -E "${ver}" |head -n 1 ) + str=$( LC_ALL=C "${where}" --version 2>&1 \ + |grep -E "${ver}" \ + |head -n 1 + ) if [ -z "${str}" ]; then printf "no\n" unset where