Skip to content

Commit 668d631

Browse files
committed
Fixup rustbuild on rust-lang#35124
1 parent 2b3921e commit 668d631

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

src/bootstrap/lib.rs

-4
Original file line numberDiff line numberDiff line change
@@ -308,10 +308,6 @@ impl Build {
308308
doc::rustbook(self, stage, target.target, "nomicon",
309309
&doc_out);
310310
}
311-
DocStyle { stage } => {
312-
doc::rustbook(self, stage, target.target, "style",
313-
&doc_out);
314-
}
315311
DocStandalone { stage } => {
316312
doc::standalone(self, stage, target.target, &doc_out);
317313
}

src/bootstrap/step.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ macro_rules! targets {
9292
(doc, Doc { stage: u32 }),
9393
(doc_book, DocBook { stage: u32 }),
9494
(doc_nomicon, DocNomicon { stage: u32 }),
95-
(doc_style, DocStyle { stage: u32 }),
9695
(doc_standalone, DocStandalone { stage: u32 }),
9796
(doc_std, DocStd { stage: u32 }),
9897
(doc_test, DocTest { stage: u32 }),
@@ -366,8 +365,7 @@ impl<'a> Step<'a> {
366365
vec![self.libtest(compiler)]
367366
}
368367
Source::DocBook { stage } |
369-
Source::DocNomicon { stage } |
370-
Source::DocStyle { stage } => {
368+
Source::DocNomicon { stage } => {
371369
vec![self.target(&build.config.build).tool_rustbook(stage)]
372370
}
373371
Source::DocErrorIndex { stage } => {
@@ -382,8 +380,7 @@ impl<'a> Step<'a> {
382380
Source::Doc { stage } => {
383381
let mut deps = vec![
384382
self.doc_book(stage), self.doc_nomicon(stage),
385-
self.doc_style(stage), self.doc_standalone(stage),
386-
self.doc_std(stage),
383+
self.doc_standalone(stage), self.doc_std(stage),
387384
self.doc_error_index(stage),
388385
];
389386

0 commit comments

Comments
 (0)