You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2014/02/15 10:11:46 UTC

svn commit: r1568595 - /subversion/trunk/tools/dist/backport.pl

Author: danielsh
Date: Sat Feb 15 09:11:46 2014
New Revision: 1568595

URL: http://svn.apache.org/r1568595
Log:
* tools/dist/backport.pl:
    Force locale to a known value since we depend on it.

Modified:
    subversion/trunk/tools/dist/backport.pl

Modified: subversion/trunk/tools/dist/backport.pl
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/backport.pl?rev=1568595&r1=1568594&r2=1568595&view=diff
==============================================================================
--- subversion/trunk/tools/dist/backport.pl (original)
+++ subversion/trunk/tools/dist/backport.pl Sat Feb 15 09:11:46 2014
@@ -70,6 +70,7 @@ my ($AVAILID) = $ENV{AVAILID} // do {
 my $STATUS = './STATUS';
 my $STATEFILE = './.backports1';
 my $BRANCHES = '^/subversion/branches';
+$ENV{LC_ALL} = "C";  # since we parse 'svn info' output
 
 # Globals.
 my %ERRORS = ();