From 3955f07f0fa4dda33d4bf551cb1a5c8ff156c767 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Tue, 1 Jul 2008 00:10:40 +0000 Subject: [PATCH] DEVEL15-man-page-html-index-20080630 LICENSE BSD Use the correct subcommand name (fs getacl instead of fs_getacl) on the HTML index page, even though we have to use the underscore in the NAME section of the actual POD documentation. (cherry picked from commit 9b61f58fa78259eb092350599a0a26d75ac14fa8) --- doc/man-pages/generate-html | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/man-pages/generate-html b/doc/man-pages/generate-html index e4ccd1366..11d47c698 100755 --- a/doc/man-pages/generate-html +++ b/doc/man-pages/generate-html @@ -78,6 +78,7 @@ sub scan_names { unless ($name) { warn "$dir/$file: cannot find NAME section, skipping\n"; } + $name =~ s/^(backup|bos|fs|fstrace|kas|pts|symlink|uss|vos)_/$1 /; my $page = $file; $page =~ s/\.pod$//; push (@index, [ $section, $name, $page, $desc ]); -- 2.39.5