diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-04-15 15:36:53 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:11:34 -0500 |
commit | b089a28cb71c9129f7540a078392043470441626 (patch) | |
tree | 14146dcde459c549eb6b712186a6462ca17415cb /source4 | |
parent | 9779e6d670d19a5dfdc034084b580653d5ca0670 (diff) | |
download | samba-b089a28cb71c9129f7540a078392043470441626.tar.gz samba-b089a28cb71c9129f7540a078392043470441626.tar.bz2 samba-b089a28cb71c9129f7540a078392043470441626.zip |
r6353: we need the english output from the svn commands
metze
(This used to be commit ccedfc9fe72d837186e80a54e6ecd8406e83d1fa)
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/script/mkversion.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/script/mkversion.sh b/source4/script/mkversion.sh index 492ecaade2..6f49108aba 100755 --- a/source4/script/mkversion.sh +++ b/source4/script/mkversion.sh @@ -46,6 +46,8 @@ fi if test x"${SAMBA_VERSION_IS_SVN_SNAPSHOT}" = x"yes";then + _SAVE_LANG=${LANG} + LANG="" HAVESVN=no svn info ${SOURCE_DIR} >/dev/null 2>&1 && HAVESVN=yes TMP_REVISION=`(svn info ${SOURCE_DIR} 2>/dev/null || svk info ${SOURCE_DIR} 2>/dev/null) |grep 'Last Changed Rev.*:' |sed -e 's/Last Changed Rev.*: \([0-9]*\).*/\1/'` @@ -63,6 +65,7 @@ if test x"${SAMBA_VERSION_IS_SVN_SNAPSHOT}" = x"yes";then else SAMBA_VERSION_STRING="${SAMBA_VERSION_STRING}-SVN-build-UNKNOWN" fi + LANG=${_SAVE_LANG} fi if test -n "${SAMBA_VERSION_VENDOR_SUFFIX}";then |