diff options
| author | steveklabnik <steve@steveklabnik.com> | 2017-08-14 13:56:41 -0400 |
|---|---|---|
| committer | steveklabnik <steve@steveklabnik.com> | 2017-08-14 13:56:41 -0400 |
| commit | 372414ce384c3817915beb04cb2d1b0b055783ed (patch) | |
| tree | 0f5e2bbbd9887b6b4d1c64e85cf1f16af84e427d | |
| parent | b6179602bea71607a9ea63197eca423fcce5f7b0 (diff) | |
| download | rust-372414ce384c3817915beb04cb2d1b0b055783ed.tar.gz rust-372414ce384c3817915beb04cb2d1b0b055783ed.zip | |
start building the rustdoc book
| -rw-r--r-- | src/bootstrap/builder.rs | 2 | ||||
| -rw-r--r-- | src/bootstrap/doc.rs | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index d7f795e4055..a85278de4c6 100644 --- a/src/bootstrap/builder.rs +++ b/src/bootstrap/builder.rs @@ -266,7 +266,7 @@ impl<'a> Builder<'a> { Kind::Bench => describe!(check::Crate, check::CrateLibrustc), Kind::Doc => describe!(doc::UnstableBook, doc::UnstableBookGen, doc::TheBook, doc::Standalone, doc::Std, doc::Test, doc::Rustc, doc::ErrorIndex, doc::Nomicon, - doc::Reference), + doc::Reference, doc::Rustdoc), Kind::Dist => describe!(dist::Docs, dist::Mingw, dist::Rustc, dist::DebuggerScripts, dist::Std, dist::Analysis, dist::Src, dist::PlainSourceTarball, dist::Cargo, dist::Rls, dist::Extended, dist::HashSign), diff --git a/src/bootstrap/doc.rs b/src/bootstrap/doc.rs index 1ee578bb62b..3cb67c245b9 100644 --- a/src/bootstrap/doc.rs +++ b/src/bootstrap/doc.rs @@ -68,6 +68,7 @@ macro_rules! book { book!( Nomicon, "src/doc/book", "nomicon"; Reference, "src/doc/reference", "reference"; + Rustdoc, "src/doc/rustdoc", "rustdoc"; ); #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] |
