Remove unnecessary Std dependency

This commit is contained in:
Mark Rousskov 2019-06-07 10:05:42 -06:00
parent 11543585c2
commit d728d27ef3
2 changed files with 0 additions and 9 deletions

View File

@ -1693,10 +1693,6 @@ fn dist_with_same_targets_and_hosts() {
compiler: Compiler { host: a, stage: 1 },
target: b,
},
compile::Std {
compiler: Compiler { host: a, stage: 2 },
target: b,
},
]
);
assert_eq!(

View File

@ -876,11 +876,6 @@ fn make_run(run: RunConfig<'_>) {
fn run(self, builder: &Builder<'_>) {
let target = self.target;
builder.ensure(compile::Std {
compiler: builder.compiler(builder.top_stage, builder.config.build),
target,
});
builder.info(&format!("Generating unstable book md files ({})", target));
let out = builder.md_doc_out(target).join("unstable-book");
builder.create_dir(&out);