From: Eric Wong Date: Fri, 24 May 2019 02:57:55 +0000 (+0000) Subject: doc: sync .txt mtime to .pod mtime X-Git-Tag: v1.2.0~230 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=9ed46d1cb99487ce96942f084c65ff95bce5017a;hp=e75cc857254c359eeb2aa202b8848b4d8abef36d;p=public-inbox.git doc: sync .txt mtime to .pod mtime Otherwise timestamps for .html files get screwed up, too; and that hurts caching. --- diff --git a/Documentation/include.mk b/Documentation/include.mk index 5c5b473c..5b793fb5 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)