about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2020-09-24 09:37:23 -0400
committerMark Rousskov <mark.simulacrum@gmail.com>2020-09-24 09:37:23 -0400
commit4de836e2141c418d37e556bc80c4ad0127d74b71 (patch)
treec24299f4feb0b4fabb1be3b60c011482425aa4bb /src/bootstrap
parent8b4085359ae798dedb05c95ad42520557bd25320 (diff)
downloadrust-4de836e2141c418d37e556bc80c4ad0127d74b71.tar.gz
rust-4de836e2141c418d37e556bc80c4ad0127d74b71.zip
Install std for non-host targets
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/install.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/install.rs b/src/bootstrap/install.rs
index d9ee3bc90fb..074f5cd73f3 100644
--- a/src/bootstrap/install.rs
+++ b/src/bootstrap/install.rs
@@ -192,7 +192,7 @@ install!((self, builder, _config),
         builder.ensure(dist::Docs { host: self.target });
         install_docs(builder, self.compiler.stage, self.target);
     };
-    Std, "library/std", true, only_hosts: true, {
+    Std, "library/std", true, only_hosts: false, {
         for target in &builder.targets {
             builder.ensure(dist::Std {
                 compiler: self.compiler,