diff options
author | wiz <wiz@pkgsrc.org> | 2009-03-25 16:33:25 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2009-03-25 16:33:25 +0000 |
commit | db21e9345c6051532de6ae1031b4d44847e92a21 (patch) | |
tree | 5b032366b60cbfb8c2fedfd86eace6fc8a81e273 | |
parent | 13996e96d2bf489a2429bc6ba4cd0afe7cab2320 (diff) | |
download | pkgsrc-db21e9345c6051532de6ae1031b4d44847e92a21.tar.gz |
Improve explanation for missing man pages for sbin/ programs.
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 1b1c4c22a77..7d328528f85 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -1,5 +1,5 @@ #! @PERL@ -# $NetBSD: pkglint.pl,v 1.805 2009/03/25 14:12:58 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.806 2009/03/25 16:33:25 wiz Exp $ # # pkglint - static analyzer and checker for pkgsrc packages @@ -7777,9 +7777,9 @@ sub checkfile_PLIST($) { $opt_warn_extra and $line->log_warning("Manual page missing for sbin/${binname}."); $opt_warn_extra and $line->explain_warning( "All programs that can be run directly by the user should have a manual", -"page for quick reference. The programs in the bin/ directory should have", -"corresponding manual pages in section 1 (filename program.1), not in", -"section 8."); +"page for quick reference. The programs in the sbin/ directory should have", +"corresponding manual pages in section 8 (filename program.8), not in", +"section 1."); } } elsif ($text =~ m"^share/applications/.*\.desktop$") { |