From: Russ Allbery Date: Mon, 30 Jun 2008 23:35:18 +0000 (+0000) Subject: man-page-html-index-20080630 X-Git-Tag: openafs-devel-1_5_61~1010 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=9b61f58fa78259eb092350599a0a26d75ac14fa8;p=packages%2Fo%2Fopenafs.git 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. --- diff --git a/doc/man-pages/generate-html b/doc/man-pages/generate-html index 11fdad109..9bde41b7a 100755 --- a/doc/man-pages/generate-html +++ b/doc/man-pages/generate-html @@ -100,6 +100,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 ]);