configure
branch1.1
changeset 1766 91d240fa7fa1
parent 444 de5067d2fa4f
child 553 b2261f6f9bc2
     1.1 --- a/configure	Thu Apr 17 19:21:32 2008 +0000
     1.2 +++ b/configure	Sun Jan 31 13:03:24 2010 +0100
     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