about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2019-09-19 07:46:24 -0700
committerAlex Crichton <alex@alexcrichton.com>2019-09-19 07:46:24 -0700
commit2fff78038cf3eb38f2bd3fecbab123bccb59c1a8 (patch)
treea196db134f7fb11539f88233b14a6d2715821e1d
parent9b9d2aff8de4d499b4ba7ca406e000f8d3754ea7 (diff)
downloadrust-2fff78038cf3eb38f2bd3fecbab123bccb59c1a8.tar.gz
rust-2fff78038cf3eb38f2bd3fecbab123bccb59c1a8.zip
rustbuild: Don't package libstd twice
Looks like the packaging step for the standard library was happening
twice on CI, but it only needs to happen once! The `Analysis` packaging
step accidentally packaged `Std` instead of relying on compiling `Std`,
which meant that we ended up packaging it twice erroneously.
-rw-r--r--src/bootstrap/dist.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs
index 076bcd878df..e27a6bf7da0 100644
--- a/src/bootstrap/dist.rs
+++ b/src/bootstrap/dist.rs
@@ -762,7 +762,7 @@ impl Step for Analysis {
             return distdir(builder).join(format!("{}-{}.tar.gz", name, target));
         }
 
-        builder.ensure(Std { compiler, target });
+        builder.ensure(compile::Std { compiler, target });
 
         let image = tmpdir(builder).join(format!("{}-{}-image", name, target));