# HG changeset patch # User "Yann E. MORIN" # Date 1213912635 0 # Node ID d2e5dc1b341c751b69c29bf77ac6bc5af6f9afa9 # Parent 56f03a07597ac1ef70c9658be3a17a9e12d2947b Backport #676 from trunk: ./configure expects message to be in the C locale, so force that. /branches/1.1/configure | 6 3 3 0 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -r 56f03a07597a -r d2e5dc1b341c configure --- a/configure Sat May 31 16:46:45 2008 +0000 +++ b/configure Thu Jun 19 21:57:15 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