diff options
| author | Jakub Beránek <jakub.beranek@vsb.cz> | 2024-08-13 18:08:30 +0200 |
|---|---|---|
| committer | Jakub Beránek <jakub.beranek@vsb.cz> | 2024-08-13 18:08:30 +0200 |
| commit | 87a4c325d2767e5e0baf0c2a4d0cc12bb78ca356 (patch) | |
| tree | cb04d33aa1bdb3894e52715550f56a82c654a022 | |
| parent | 80eb5a8e910e5185d47cdefe3732d839c78a5e7e (diff) | |
| download | rust-87a4c325d2767e5e0baf0c2a4d0cc12bb78ca356.tar.gz rust-87a4c325d2767e5e0baf0c2a4d0cc12bb78ca356.zip | |
Fix target triple in bootstrap
| -rw-r--r-- | src/bootstrap/src/core/download.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/download.rs b/src/bootstrap/src/core/download.rs index 8131666fcb2..fd85650bc56 100644 --- a/src/bootstrap/src/core/download.rs +++ b/src/bootstrap/src/core/download.rs @@ -519,7 +519,7 @@ impl Config { 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"); |
