Rollup merge of #51302 - Mark-Simulacrum:rustdoc-fast, r=QuietMisdreavus

Permit building rustdoc without compiler artifacts

None
This commit is contained in:
Mark Simulacrum 2018-06-02 13:14:28 -06:00 committed by GitHub
commit dcfe311da8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -952,8 +952,7 @@ impl Step for Compiletest {
if suite.ends_with("fulldeps") ||
// FIXME: Does pretty need librustc compiled? Note that there are
// fulldeps test suites with mode = pretty as well.
mode == "pretty" ||
mode == "rustdoc"
mode == "pretty"
{
builder.ensure(compile::Rustc { compiler, target });
}

View File

@ -9,6 +9,7 @@
// except according to those terms.
// no-prefer-dynamic
// ignore-stage1
#![crate_type = "proc-macro"]