]> Sergey Matveev's repositories - public-inbox.git/blobdiff - Makefile.PL
doc: PublicInbox::SaPlugin::ListMirror manpage
[public-inbox.git] / Makefile.PL
index 39b9b198042fc399c536e14a493fae9ebbc6131f..adc7e5184374426721b8176c1f67f397867b93eb 100644 (file)
@@ -13,9 +13,10 @@ my $PM_FILES = join(' ', grep(m!^lib/.*\.pm$!, @manifest));
 my %man3 = map {; # semi-colon tells Perl this is a BLOCK (and not EXPR)
        my $base = $_;
        my $mod = $base;
+       $mod =~ s!/!::!g;
        $mod =~ s/\.\w+\z//;
        "lib/PublicInbox/$_" => "blib/man3/PublicInbox::$mod.3"
-} qw(Git.pm Import.pm WWW.pod);
+} qw(Git.pm Import.pm WWW.pod SaPlugin/ListMirror.pod);
 
 WriteMakefile(
        NAME => 'PublicInbox',