unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
From: Eric Wong <e@80x24.org>
To: meta@public-inbox.org
Subject: [PATCH] doc: ignore onion URLs for 80-column check
Date: Tue,  4 May 2021 04:15:44 +0000	[thread overview]
Message-ID: <20210504041544.47116-1-e@80x24.org> (raw)

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 \$\@+ \$@" ];

                 reply	other threads:[~2021-05-04  4:15 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://public-inbox.org/README

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210504041544.47116-1-e@80x24.org \
    --to=e@80x24.org \
    --cc=meta@public-inbox.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).