Move the man directory to a subdirectory

There is no reason it should be in the top directory.
This commit is contained in:
est31
2017-09-08 12:37:39 +02:00
parent d7d75eff30
commit d587558269
3 changed files with 1 additions and 2 deletions
+1 -2
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",
];
View File