Respect pre-existing RUSTC_BOOTSTRAP setting

This commit is contained in:
David Tolnay 2023-12-30 09:26:12 -08:00
parent 15b4f91f3b
commit df2d2899bc
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -410,6 +410,10 @@ fn apply_args(cmd: &mut Command, args: &Expand, color: &Coloring, outfile: &Path
}
fn needs_rustc_bootstrap() -> bool {
if env::var_os("RUSTC_BOOTSTRAP").is_some_and(|var| !var.is_empty()) {
return false;
}
let rustc = if let Some(rustc) = env::var_os("RUSTC") {
PathBuf::from(rustc)
} else {