X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=Makefile.PL;h=46ef99f9f5210a27b2b63568a34038e5b047ead8;hp=2b3c7fd04c1035326a300048f9de82d78024526e;hb=d62d98b9a7f502da65673f0b83a6d06312c060d9;hpb=4d19d3a79188591a25d325128d2ed0a153766577 diff --git a/Makefile.PL b/Makefile.PL index 2b3c7fd0..46ef99f9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,9 +13,10 @@ $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, @{$v->{txt}}; for my $txt (@dtxt) { my $html = $txt; - $html =~ s/\.txt\z/.html/; + $html =~ s/\.txt\z/.html/ or $html .= '.html'; $t->{"$html : $txt"} = [ "\$(txt2pre) <$txt" ]; } $v->{t_slash_star_dot_t} = [ grep(m!\At/.*\.t\z!, @manifest) ];