diff options
| author | Mark Rousskov <mark.simulacrum@gmail.com> | 2018-07-02 14:46:40 -0600 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2018-07-02 14:46:40 -0600 |
| commit | f5570d0ef66847d6617682058a9fa680cdce392b (patch) | |
| tree | ac85c22e5a5cabeaeeecd83499ba7d61a07277a4 | |
| parent | 9363342be956d1bf7781a3b7455d80fc5d94b1f8 (diff) | |
| download | rust-f5570d0ef66847d6617682058a9fa680cdce392b.tar.gz rust-f5570d0ef66847d6617682058a9fa680cdce392b.zip | |
Make explicit that assemble is not run from CLI
| -rw-r--r-- | src/bootstrap/compile.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/compile.rs b/src/bootstrap/compile.rs index 642f22b11ad..24e5bb2a9ed 100644 --- a/src/bootstrap/compile.rs +++ b/src/bootstrap/compile.rs @@ -873,7 +873,7 @@ impl Step for Assemble { type Output = Compiler; fn should_run(run: ShouldRun) -> ShouldRun { - run.all_krates("rustc-main") + run.never() } /// Prepare a new compiler from the artifacts in `stage` |
