Skip to content

Commit

Permalink
Rename rustdoc to use underscores
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-Simulacrum committed May 17, 2018
1 parent 9e34324 commit 47f88e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bootstrap/tool.rs
Expand Up @@ -431,7 +431,7 @@ impl Step for Rustdoc {
// the wrong rustdoc being executed. To avoid the conflicting rustdocs, we name the "tool"
// rustdoc a different name.
let tool_rustdoc = builder.cargo_out(build_compiler, Mode::Tool, target)
.join(exe("rustdoc-tool-binary", &target_compiler.host));
.join(exe("rustdoc_tool_binary", &target_compiler.host));

// don't create a stage0-sysroot/bin directory.
if target_compiler.stage > 0 {
Expand Down
2 changes: 1 addition & 1 deletion src/tools/rustdoc/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ authors = ["The Rust Project Developers"]
# the wrong rustdoc being executed. To avoid the conflicting rustdocs, we name the "tool"
# rustdoc a different name.
[[bin]]
name = "rustdoc-tool-binary"
name = "rustdoc_tool_binary"
path = "main.rs"

[dependencies]
Expand Down

0 comments on commit 47f88e1

Please sign in to comment.