dist-check: set LC_ALL=C env.

This commit is contained in:
Yichun Zhang (agentzh) 2019-09-07 22:52:24 -07:00
parent 45a454beec
commit f5d359f8f0
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@ sub sh ($@);
sub cleanup ();
sub write_config_file ($);
BEGIN {
$ENV{LC_ALL} = 'C';
}
my %opts;
getopts("lf:", \%opts) or die "Usage: $0 [-f] [-l] <cores>\n";