Skip to content

Commit 47f88e1

Browse files
committedMay 17, 2018
Rename rustdoc to use underscores
1 parent 9e34324 commit 47f88e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/bootstrap/tool.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ impl Step for Rustdoc {
431431
// the wrong rustdoc being executed. To avoid the conflicting rustdocs, we name the "tool"
432432
// rustdoc a different name.
433433
let tool_rustdoc = builder.cargo_out(build_compiler, Mode::Tool, target)
434-
.join(exe("rustdoc-tool-binary", &target_compiler.host));
434+
.join(exe("rustdoc_tool_binary", &target_compiler.host));
435435

436436
// don't create a stage0-sysroot/bin directory.
437437
if target_compiler.stage > 0 {

‎src/tools/rustdoc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = ["The Rust Project Developers"]
77
# the wrong rustdoc being executed. To avoid the conflicting rustdocs, we name the "tool"
88
# rustdoc a different name.
99
[[bin]]
10-
name = "rustdoc-tool-binary"
10+
name = "rustdoc_tool_binary"
1111
path = "main.rs"
1212

1313
[dependencies]

0 commit comments

Comments
 (0)
Please sign in to comment.