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 B8AE51F5AE for ; Tue, 4 May 2021 04:15:45 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] doc: ignore onion URLs for 80-column check Date: Tue, 4 May 2021 04:15:44 +0000 Message-Id: <20210504041544.47116-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: This failure was also passing under FreeBSD make + /bin/sh; so we also avoid the '&&' chain is avoided and use '>$@' as a separate line in the Makefile. --- Documentation/include.mk | 5 +++-- Makefile.PL | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Documentation/include.mk b/Documentation/include.mk index 79bf460d..5f3ffcc5 100644 --- a/Documentation/include.mk +++ b/Documentation/include.mk @@ -52,8 +52,9 @@ install-man: man doc_install :: install-man check :: check-man -check_man = $(AWK) '{gsub(/\b./,"")}length>80{print;err=1}END{exit(err)}'\ - >&2 && >$@ +check_man = $(AWK) \ + '{gsub(/\b./,"")}$$0 !~ /\.onion/&&length>80{print;e=1}END{exit(e)}' \ + >&2 check-man :: $(check_80) diff --git a/Makefile.PL b/Makefile.PL index 85b18e7d..401c033e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -72,7 +72,8 @@ for my $i (@sections) { $t->{"Documentation/$m.html : $txt"} = [ "\$(txt2pre) <$txt" ]; $t->{".$m.cols : $m.$i"} = [ "\@echo CHECK80 $m.$i;". - "COLUMNS=80 \$(MAN) ./$m.$i | \$(check_man)" ]; + "COLUMNS=80 \$(MAN) ./$m.$i | \$(check_man)", + '>$@' ]; $t->{".$m.lexgrog: $m.$i"} = [ "\@echo LEXGROG $m.$i;" . "\$(LEXGROG) ./$m.$i >\$\@+ && mv \$\@+ \$@" ];