X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=Makefile.PL;h=8f1bc4b413b7d340e629522b07f690dcb61a80a8;hb=e140e7bbef7ec519e5b01be924dd9a38cda25a48;hp=d626aef45ecb1c2b60b1759cd000930957ad352e;hpb=cf7f4fce116878025fbb98bc589fb1da050cf473;p=public-inbox.git diff --git a/Makefile.PL b/Makefile.PL index d626aef4..8f1bc4b4 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,6 +13,7 @@ $v->{news_deps} = [ map { "Documentation/RelNotes/$_.eml" } @RELEASES ]; $v->{txt} = [ qw(INSTALL README COPYING TODO HACKING) ]; my @dtxt = grep(m!\ADocumentation/[^/]+\.txt\z!, @manifest); push @dtxt, 'Documentation/standards.txt'; +push @dtxt, 'Documentation/flow.txt'; push @dtxt, @{$v->{txt}}; for my $txt (@dtxt) { my $html = $txt; @@ -70,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 $@+ $@' ];