Auto merge of #44413 - est31:move_man, r=nikomatsakis

Move the man directory to a subdirectory

There is no reason it should be in the top directory.
This commit is contained in:
bors 2017-09-12 12:41:23 +00:00
commit a7b7dce02d
3 changed files with 1 additions and 2 deletions

View File

@ -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 {
@ -834,7 +834,6 @@ impl Step for PlainSourceTarball {
"config.toml.example",
];
let src_dirs = [
"man",
"src",
];