[asterisk-commits] branch 1.2 - r7257 /branches/1.2/build_tools/make_svn_branch_name

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Thu Dec 1 13:25:07 CST 2005


Author: kpfleming
Date: Thu Dec  1 13:25:06 2005
New Revision: 7257

URL: http://svn.digium.com/view/asterisk?rev=7257&view=rev
Log:
ensure that 'svn info' output is in the expected language for the script to parse (issue #5880)

Modified:
    branches/1.2/build_tools/make_svn_branch_name

Modified: branches/1.2/build_tools/make_svn_branch_name
URL: http://svn.digium.com/view/asterisk/branches/1.2/build_tools/make_svn_branch_name?rev=7257&r1=7256&r2=7257&view=diff
==============================================================================
--- branches/1.2/build_tools/make_svn_branch_name (original)
+++ branches/1.2/build_tools/make_svn_branch_name Thu Dec  1 13:25:06 2005
@@ -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



More information about the asterisk-commits mailing list