Make make_sunver.pl robust against non-C locales
* make_sunver.pl: Enforce C locale. From-SVN: r196309
This commit is contained in:
parent
436a956a80
commit
d809887a66
@ -1,3 +1,7 @@
|
||||
2013-02-27 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* make_sunver.pl: Enforce C locale.
|
||||
|
||||
2013-02-06 Richard Sandiford <rdsandiford@googlemail.com>
|
||||
|
||||
* update-copyright.py: Add libdecnumber to the default list.
|
||||
|
@ -19,6 +19,10 @@
|
||||
use FileHandle;
|
||||
use IPC::Open2;
|
||||
|
||||
# Enforce C locale.
|
||||
$ENV{'LC_ALL'} = "C";
|
||||
$ENV{'LANG'} = "C";
|
||||
|
||||
# Input version script, GNU style.
|
||||
my $symvers = shift;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user