Skip to content

Commit

Permalink
Auto merge of rust-lang#44413 - est31:move_man, r=nikomatsakis
Browse files Browse the repository at this point in the history
Move the man directory to a subdirectory

There is no reason it should be in the top directory.
  • Loading branch information
bors committed Sep 12, 2017
2 parents 817e1b8 + d587558 commit a7b7dce
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/bootstrap/dist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ impl Step for Rustc {

// Man pages
t!(fs::create_dir_all(image.join("share/man/man1")));
cp_r(&build.src.join("man"), &image.join("share/man/man1"));
cp_r(&build.src.join("src/doc/man"), &image.join("share/man/man1"));

// Debugger scripts
builder.ensure(DebuggerScripts {
Expand Down Expand Up @@ -834,7 +834,6 @@ impl Step for PlainSourceTarball {
"config.toml.example",
];
let src_dirs = [
"man",
"src",
];

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit a7b7dce

Please sign in to comment.