Backport #676 from trunk: 1.1
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Jun 19 21:57:15 2008 +0000 (2008-06-19)
branch1.1
changeset 585d2e5dc1b341c
parent 540 56f03a07597a
child 586 363c7dd41131
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(-)
configure
     1.1 --- a/configure	Sat May 31 16:46:45 2008 +0000
     1.2 +++ b/configure	Thu Jun 19 21:57:15 2008 +0000
     1.3 @@ -125,13 +125,13 @@
     1.4  # If we can't get the revision number, use date
     1.5  case "${VERSION}" in
     1.6    *+svn)
     1.7 -    REVISION=$(svnversion)
     1.8 +    REVISION=$(LC_ALL=C svnversion)
     1.9      case "${REVISION}" in
    1.10        exported)
    1.11          VERSION="${VERSION}:unknown@$(date +%Y%m%d.%H%M%S)";;
    1.12        *)
    1.13 -        URL=$(LANG=C svn info 2>/dev/null |egrep 'URL: ' |cut -d ' ' -f 2-)
    1.14 -        ROOT=$(LANG=C svn info 2>/dev/null |egrep 'Repository Root: ' |cut -d ' ' -f 3-)
    1.15 +        URL=$(LC_ALL=C svn info 2>/dev/null |egrep 'URL: ' |cut -d ' ' -f 2-)
    1.16 +        ROOT=$(LC_ALL=C svn info 2>/dev/null |egrep 'Repository Root: ' |cut -d ' ' -f 3-)
    1.17          VERSION="${VERSION}:${URL#${ROOT}}@${REVISION}"
    1.18          ;;
    1.19      esac