From 0d8f099ca2f31387afc55ad686640f8bdffb2ffd Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Thu, 1 Dec 2005 19:25:06 +0000 Subject: [PATCH] ensure that 'svn info' output is in the expected language for the script to parse (issue #5880) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@7257 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- build_tools/make_svn_branch_name | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_tools/make_svn_branch_name b/build_tools/make_svn_branch_name index 7508410197..484bef5853 100755 --- a/build_tools/make_svn_branch_name +++ b/build_tools/make_svn_branch_name @@ -1,10 +1,10 @@ #!/bin/sh -PARTS=`svn info | grep URL | awk '{print $2;}' | sed -e s:^.*/svn/asterisk/:: | sed -e 's:/: :'` +PARTS=`LANG=C svn info | grep URL | awk '{print $2;}' | sed -e s:^.*/svn/asterisk/:: | sed -e 's:/: :'` BRANCH=0 TEAM=0 -REV=`svn info | grep -e 'Last Changed Rev' | awk '{print $4;}'` +REV=`LANG=C svn info | grep -e 'Last Changed Rev' | awk '{print $4;}'` if [ "${PARTS}" = "trunk" ] then