Skip to content

Commit 2fb1445

Browse files
authoredJan 10, 2020
Rollup merge of rust-lang#68039 - euclio:remove-strip-hidden, r=dtolnay
remove explicit strip-hidden pass from compiler doc generation `strip-hidden` is now implied by `--document-private-items` with rust-lang#67875, so there's no need to specify it anymore.
2 parents 3f26eef + 8267807 commit 2fb1445

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/bootstrap/doc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ impl Step for Rustc {
531531

532532
// Build cargo command.
533533
let mut cargo = builder.cargo(compiler, Mode::Rustc, target, "doc");
534-
cargo.env("RUSTDOCFLAGS", "--document-private-items --passes strip-hidden");
534+
cargo.env("RUSTDOCFLAGS", "--document-private-items");
535535
compile::rustc_cargo(builder, &mut cargo, target);
536536

537537
// Only include compiler crates, no dependencies of those, such as `libc`.

0 commit comments

Comments
 (0)
Please sign in to comment.