aboutsummaryrefslogtreecommitdiffstats
path: root/build_tools
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-12-01 19:25:06 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-12-01 19:25:06 +0000
commitbb26a2c74dd230ccea9aa7f7a046654669843738 (patch)
tree0326b35969f8c5c0055b31f9186811daac325ea4 /build_tools
parent24e865f5269b25281c322541398976f0f41c6a42 (diff)
ensure that 'svn info' output is in the expected language for the script to parse (issue #5880)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@7257 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'build_tools')
-rwxr-xr-xbuild_tools/make_svn_branch_name4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_tools/make_svn_branch_name b/build_tools/make_svn_branch_name
index 750841019..484bef585 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