From: Uwe Kleine-König Date: Fri, 18 Dec 2020 11:56:14 +0000 (+0100) Subject: Fix manpage section of perl module documentation X-Git-Tag: v1.7.0~1533 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=cd12cf22c4d161b7aec819f45628b983f0bd675d Fix manpage section of perl module documentation On Debian (at least) perl documentation is supposed to be installed in section 3pm. With the build system hardcoding this to 3 instead this results in a warning by the Debian package linter: W: public-inbox: wrong-manual-section usr/share/man/man3/PublicInbox::Git.3.gz:74 3 != 3pm W: public-inbox: wrong-manual-section usr/share/man/man3/PublicInbox::Import.3.gz:74 3 != 3pm W: public-inbox: wrong-manual-section usr/share/man/man3/PublicInbox::SaPlugin::ListMirror.3.gz:74 3 != 3pm W: public-inbox: wrong-manual-section ... use --no-tag-display-limit to see all (or pipe to a file/program) So use "$(MAN3EXT)" instead of "3". --- diff --git a/Makefile.PL b/Makefile.PL index 8e710df2..57592378 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -118,7 +118,7 @@ my %man3 = map {; # semi-colon tells Perl this is a BLOCK (and not EXPR) my $mod = $base; $mod =~ s!/!::!g; $mod =~ s/\.\w+\z//; - "lib/PublicInbox/$_" => "blib/man3/PublicInbox::$mod.3" + "lib/PublicInbox/$_" => "blib/man3/PublicInbox::$mod.\$(MAN3EXT)" } qw(Git.pm Import.pm WWW.pod SaPlugin/ListMirror.pod); my $warn_no_pod = @no_pod ? "\n\t\@echo W: missing .pod: @no_pod\n" : '';