# HG changeset patch # User "Yann E. MORIN" # Date 1212352421 0 # Node ID 4cdd0e37b577c4ba99bf4472d402a296f8ae6da0 # Parent f6110c02fbc142c3b9cc9a67a901120cf7d5a21a ./configure expects message to be in the C locale, so force that. /trunk/configure | 6 3 3 0 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -r f6110c02fbc1 -r 4cdd0e37b577 configure --- a/configure Sat May 31 17:18:22 2008 +0000 +++ b/configure Sun Jun 01 20:33:41 2008 +0000 @@ -125,13 +125,13 @@ # If we can't get the revision number, use date case "${VERSION}" in *+svn) - REVISION=$(svnversion) + REVISION=$(LC_ALL=C svnversion) case "${REVISION}" in exported) VERSION="${VERSION}:unknown@$(date +%Y%m%d.%H%M%S)";; *) - URL=$(LANG=C svn info 2>/dev/null |egrep 'URL: ' |cut -d ' ' -f 2-) - ROOT=$(LANG=C svn info 2>/dev/null |egrep 'Repository Root: ' |cut -d ' ' -f 3-) + URL=$(LC_ALL=C svn info 2>/dev/null |egrep 'URL: ' |cut -d ' ' -f 2-) + ROOT=$(LC_ALL=C svn info 2>/dev/null |egrep 'Repository Root: ' |cut -d ' ' -f 3-) VERSION="${VERSION}:${URL#${ROOT}}@${REVISION}" ;; esac