diff -r de5067d2fa4f -r 4cdd0e37b577 configure --- a/configure Thu Apr 17 19:21:32 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