about summary refs log tree commit homepage
path: root/Makefile.PL
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-10-08 08:58:06 +0000
committerEric Wong <e@80x24.org>2019-10-09 06:43:25 +0000
commit22d9cabeb30bdf491308f60528b6c6a442941d07 (patch)
treeadfa29309172f657ef2aaa8e0b4e615e49e0a9b5 /Makefile.PL
parent789f1c6718481eec59a8c7add6025b8e85040aa9 (diff)
downloadpublic-inbox-22d9cabeb30bdf491308f60528b6c6a442941d07.tar.gz
This is a plugin for SpamAssassin that happens to be quite
useful in keeping spam off lists I mirror.  Hopefully more
people can find it useful now that it has a manpage.
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL
index 39b9b198..adc7e518 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -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',