Skip to content

Commit a7b7dce

Browse files
committed
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.
2 parents 817e1b8 + d587558 commit a7b7dce

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

src/bootstrap/dist.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ impl Step for Rustc {
432432

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

437437
// Debugger scripts
438438
builder.ensure(DebuggerScripts {
@@ -834,7 +834,6 @@ impl Step for PlainSourceTarball {
834834
"config.toml.example",
835835
];
836836
let src_dirs = [
837-
"man",
838837
"src",
839838
];
840839

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)