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 @@ macro_rules! describe { 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 @@ fn run(self, builder: &Builder) { book!( Nomicon, "src/doc/book", "nomicon"; Reference, "src/doc/reference", "reference"; + Rustdoc, "src/doc/rustdoc", "rustdoc"; ); #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]