X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=Makefile.PL;h=7e21fce931dfaf062ea472ea2cecaeb85dc91e3e;hb=30250c8c20fbdf1fa56775b3ae862f171cc0411d;hp=598741706041302a7b887df28441d3603809a81e;hpb=6864cdba2bb65069d15d26e0b9af6ade8edd0ec3;p=public-inbox.git diff --git a/Makefile.PL b/Makefile.PL index 59874170..7e21fce9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright (C) 2013-2019 all contributors +# Copyright (C) 2013-2020 all contributors # License: AGPL-3.0+ use strict; use ExtUtils::MakeMaker; @@ -71,10 +71,10 @@ $v->{rsync_docs} = [ @{$v->{gz_docs}}, @{$v->{docs}}, # external manpages which we host ourselves, since some packages # (currently just Xapian) doesn't host manpages themselves. my @xman = qw(copydatabase.1 xapian-compact.1); -$v->{xdocs} = [ map { "Documentation/.x/.$_.txt" } @xman ]; -$v->{xdocs_html} = [ map { "Documentation/.x/.$_.html" } @xman ]; +$v->{xdocs} = [ map { "Documentation/.$_.txt" } @xman ]; +$v->{xdocs_html} = [ map { "Documentation/.$_.html" } @xman ]; for (@{$v->{xdocs}}) { - $t->{"$_ : | Documentation/.x"} = [ + $t->{"$_:"} = [ '$(PERL) -w Documentation/extman.perl $@ >$@+', 'mv $@+ $@' ];