diff options
| author | bors <bors@rust-lang.org> | 2016-11-11 14:39:23 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-11 14:39:23 -0800 |
| commit | 391939be76be89845b9673b0c39301c0c07bbf34 (patch) | |
| tree | 849db091a43f41b8364423bde8c18d7fcd5668f0 | |
| parent | 5293b913c457ada5e5790ec3bcecbb373c8006e8 (diff) | |
| parent | 9d087455ba88c8c29fba6de1858e12055bf4bdae (diff) | |
| download | rust-391939be76be89845b9673b0c39301c0c07bbf34.tar.gz rust-391939be76be89845b9673b0c39301c0c07bbf34.zip | |
Auto merge of #37721 - brson:docs-default, r=alexcrichton
bootstrap: rust-docs is a default package This will cause it to be built as part of `make dist`. This is blocking betas and nightlies. r? @alexcrichton
| -rw-r--r-- | src/bootstrap/step.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/step.rs b/src/bootstrap/step.rs index 6f616434b10..190a4cc67f9 100644 --- a/src/bootstrap/step.rs +++ b/src/bootstrap/step.rs @@ -424,6 +424,7 @@ pub fn build_rules(build: &Build) -> Rules { .host(true) .run(move |_| dist::rust_src(build)); rules.dist("dist-docs", "src/doc") + .default(true) .dep(|s| s.name("default:doc")) .run(move |s| dist::docs(build, s.stage, s.target)); rules.dist("install", "src") |
