diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index b40dbfde4a4..9eacb5e3924 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -308,10 +308,6 @@ pub fn build(&mut self) { doc::rustbook(self, stage, target.target, "nomicon", &doc_out); } - DocStyle { stage } => { - doc::rustbook(self, stage, target.target, "style", - &doc_out); - } DocStandalone { stage } => { doc::standalone(self, stage, target.target, &doc_out); } diff --git a/src/bootstrap/step.rs b/src/bootstrap/step.rs index 8d3cb36166b..12929664886 100644 --- a/src/bootstrap/step.rs +++ b/src/bootstrap/step.rs @@ -92,7 +92,6 @@ macro_rules! targets { (doc, Doc { stage: u32 }), (doc_book, DocBook { stage: u32 }), (doc_nomicon, DocNomicon { stage: u32 }), - (doc_style, DocStyle { stage: u32 }), (doc_standalone, DocStandalone { stage: u32 }), (doc_std, DocStd { stage: u32 }), (doc_test, DocTest { stage: u32 }), @@ -366,8 +365,7 @@ pub fn deps(&self, build: &'a Build) -> Vec> { vec![self.libtest(compiler)] } Source::DocBook { stage } | - Source::DocNomicon { stage } | - Source::DocStyle { stage } => { + Source::DocNomicon { stage } => { vec![self.target(&build.config.build).tool_rustbook(stage)] } Source::DocErrorIndex { stage } => { @@ -382,8 +380,7 @@ pub fn deps(&self, build: &'a Build) -> Vec> { Source::Doc { stage } => { let mut deps = vec![ self.doc_book(stage), self.doc_nomicon(stage), - self.doc_style(stage), self.doc_standalone(stage), - self.doc_std(stage), + self.doc_standalone(stage), self.doc_std(stage), self.doc_error_index(stage), ];