Fix target triple in bootstrap

This commit is contained in:
Jakub Beránek 2024-08-13 18:08:30 +02:00
parent 80eb5a8e91
commit 87a4c325d2

View File

@ -519,7 +519,7 @@ fn download_toolchain(
extra_components: &[&str],
download_component: fn(&Config, String, &str, &str),
) {
let host = self.build;
let host = self.build.triple;
let bin_root = self.out.join(host).join(sysroot);
let rustc_stamp = bin_root.join(".rustc-stamp");