Commit d809887a by Rainer Orth Committed by Rainer Orth

Make make_sunver.pl robust against non-C locales

	* make_sunver.pl: Enforce C locale.

From-SVN: r196309
parent 436a956a
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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment