about summary refs log tree commit homepage
path: root/Documentation
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-05-24 02:57:55 +0000
committerEric Wong <e@80x24.org>2019-05-24 02:58:52 +0000
commit9ed46d1cb99487ce96942f084c65ff95bce5017a (patch)
tree790c429f43742b863e009a6fb9983260fcd34a63 /Documentation
parente75cc857254c359eeb2aa202b8848b4d8abef36d (diff)
downloadpublic-inbox-9ed46d1cb99487ce96942f084c65ff95bce5017a.tar.gz
Otherwise timestamps for .html files get screwed up, too;
and that hurts caching.
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/include.mk4
1 files changed, 2 insertions, 2 deletions
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)