We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
LC_ALL=C
1 parent e08b80c commit b6909ceCopy full SHA for b6909ce
src/tools/run-make-support/src/run.rs
@@ -29,6 +29,7 @@ fn run_common(name: &str, args: Option<&[&str]>) -> Command {
29
}
30
env::join_paths(paths.iter()).unwrap()
31
});
32
+ cmd.env("LC_ALL", "C"); // force english locale
33
34
if is_windows() {
35
let mut paths = vec![];
@@ -84,5 +85,6 @@ pub fn run_fail(name: &str) -> CompletedProcess {
84
85
pub fn cmd<S: AsRef<OsStr>>(program: S) -> Command {
86
let mut command = Command::new(program);
87
set_host_rpath(&mut command);
88
+ command.env("LC_ALL", "C"); // force english locale
89
command
90
0 commit comments