diff options
| author | leonardo.yvens <leoyvens@gmail.com> | 2017-10-22 14:54:07 -0200 |
|---|---|---|
| committer | leonardo.yvens <leoyvens@gmail.com> | 2017-10-22 14:55:02 -0200 |
| commit | 170f63e1c6b56140bbd55f9c42bab844e8d09a20 (patch) | |
| tree | 69472ed335a0c4bff7455a73f2c1e9c30187f35e | |
| parent | 19aa23b6d332e693786fa51dbca87828bb884314 (diff) | |
| download | rust-170f63e1c6b56140bbd55f9c42bab844e8d09a20.tar.gz rust-170f63e1c6b56140bbd55f9c42bab844e8d09a20.zip | |
Don't build docs for removed libcollections.
| -rw-r--r-- | src/bootstrap/doc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/doc.rs b/src/bootstrap/doc.rs index 271db98638b..16e8ee182bd 100644 --- a/src/bootstrap/doc.rs +++ b/src/bootstrap/doc.rs @@ -490,7 +490,7 @@ impl Step for Std { // for which docs must be built. if !build.config.compiler_docs { cargo.arg("--no-deps"); - for krate in &["alloc", "collections", "core", "std", "std_unicode"] { + for krate in &["alloc", "core", "std", "std_unicode"] { cargo.arg("-p").arg(krate); // Create all crate output directories first to make sure rustdoc uses // relative links. |
