From 826fd01518760279aec8c8e494a5d5d7fde28f0b Mon Sep 17 00:00:00 2001 From: patrick bendorf Date: Mon, 29 Feb 2016 17:21:20 +0100 Subject: [PATCH] /winsup/ * ccwrap: set LC_ALL instead of LANG to 'C' to force locale reliably --- winsup/ccwrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/ccwrap b/winsup/ccwrap index 0c6a170..a7d2dd1 100755 --- a/winsup/ccwrap +++ b/winsup/ccwrap @@ -12,7 +12,7 @@ if ($ARGV[0] ne '++') { $cxx = 1; } die "$0: $ccorcxx environment variable does not exist\n" unless exists $ENV{$ccorcxx}; -$ENV{'LANG'} = 'C'; +$ENV{'LC_ALL'} = 'C'; my @compiler = split ' ', $ENV{$ccorcxx}; if ("@ARGV" !~ / -nostdinc/o) { my $fd; -- 2.7.0