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 BE5A21F97E for ; Fri, 24 May 2019 02:57:59 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 3/7] doc: don't barf on missing `git set-file-times' Date: Fri, 24 May 2019 02:57:54 +0000 Message-Id: <20190524025758.32261-4-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: It's not critical, but it's nice to have for cache-friendliness (otherwise I would not have written it :P) I guess I should follow up on getting it into 'git contrib/': https://public-inbox.org/git/20100702033709.GA6818@burratino/ --- Documentation/include.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Documentation/include.mk b/Documentation/include.mk index 27d6ea6..5c5b473 100644 --- a/Documentation/include.mk +++ b/Documentation/include.mk @@ -115,7 +115,9 @@ doc: $(docs) gz-doc: $(gz_docs) rsync-doc: - git set-file-times $(docs) $(txt) + # /usr/share/doc/rsync/scripts/git-set-file-times{.gz} on Debian systems + # It is also at: https://yhbt.net/git-set-file-times + -git set-file-times $(docs) $(txt) $(MAKE) gz-doc $(RSYNC) --chmod=Fugo=r -av $(rsync_docs) $(RSYNC_DEST) clean-doc: -- EW