From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id F28F01F5A2 for ; Fri, 24 Jan 2020 22:09:33 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 2/5] website: re-add top-level files Date: Fri, 24 Jan 2020 22:09:30 +0000 Message-Id: <20200124220933.11970-3-e@yhbt.net> In-Reply-To: <20200124220933.11970-1-e@yhbt.net> References: <20200124220933.11970-1-e@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: I noticed the TODO was out-of-date on the website, among some other things. This was broken in moving GNU-isms in the Makefile to Perl. --- Makefile.PL | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) ];