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 F2CBA1F97F for ; Fri, 24 May 2019 02:57:59 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 4/7] doc: sync .txt mtime to .pod mtime Date: Fri, 24 May 2019 02:57:55 +0000 Message-Id: <20190524025758.32261-5-e@80x24.org> In-Reply-To: <20190524025758.32261-1-e@80x24.org> References: <20190524025758.32261-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Otherwise timestamps for .html files get screwed up, too; and that hurts caching. --- Documentation/include.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/include.mk b/Documentation/include.mk index 5c5b473..5b793fb 100644 --- a/Documentation/include.mk +++ b/Documentation/include.mk @@ -87,13 +87,13 @@ dtxt += $(mantxt) all :: $(mantxt) Documentation/%.txt : Documentation/%.pod - $(podtext) $< $@+ && mv $@+ $@ + $(podtext) $< $@+ && touch -r $< $@+ && mv $@+ $@ txt2pre = $(PERL) -I lib ./Documentation/txt2pre <$< >$@+ && \ touch -r $< $@+ && mv $@+ $@ Documentation/standards.txt : Documentation/standards.perl - $(PERL) $< >$@+ && mv $@+ $@ + $(PERL) $< >$@+ && touch -r $< $@+ && mv $@+ $@ Documentation/%.html: Documentation/%.txt $(txt2pre) -- EW