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,AWL,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 5E6351F462 for ; Sun, 9 Jun 2019 09:10:26 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] doc: clean-doc target removes *.8 manpages Date: Sun, 9 Jun 2019 09:10:26 +0000 Message-Id: <20190609091026.6957-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: --- Documentation/include.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/include.mk b/Documentation/include.mk index 558444d..10bd29f 100644 --- a/Documentation/include.mk +++ b/Documentation/include.mk @@ -151,7 +151,7 @@ rsync-doc: $(RSYNC) --chmod=Fugo=r -av $(rsync_docs) $(rsync_xdocs) $(RSYNC_DEST) clean-doc: - $(RM) $(man1) $(man5) $(man7) $(gz_docs) $(docs_html) $(mantxt) + $(RM) $(man1) $(man5) $(man7) $(man8) $(gz_docs) $(docs_html) $(mantxt) $(RM) $(gz_xdocs) $(xdocs_html) $(xdocs) clean :: clean-doc -- EW