# HG changeset patch # User "Yann E. MORIN" # Date 1255185852 -7200 # Node ID ad811f1434e15d3b0f2faa66de42cb08cf84826e # Parent cb9d5bf0cdc4fce96fff9891b81e51be47b37017 configure: force using the C locale to check messages (transplanted from 2f44fac6b5143f7b14f5367209c9df9b1102298e) diff -r cb9d5bf0cdc4 -r ad811f1434e1 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