diff --git a/src/bootstrap/step.rs b/src/bootstrap/step.rs index 4b5a26d205a..8a96cd1b4d2 100644 --- a/src/bootstrap/step.rs +++ b/src/bootstrap/step.rs @@ -418,7 +418,6 @@ pub fn deps(&self, build: &'a Build) -> Vec> { self.check_crate_std(compiler), self.check_crate_test(compiler), self.check_debuginfo(compiler), - self.dist(stage), ]; // If we're testing the build triple, then we know we can @@ -463,6 +462,9 @@ pub fn deps(&self, build: &'a Build) -> Vec> { // misc self.check_linkcheck(stage), self.check_tidy(stage), + + // can we make the distributables? + self.dist(stage), ]); } return base