summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2020-05-03 09:06:59 +0000
committerrillig <rillig@pkgsrc.org>2020-05-03 09:06:59 +0000
commit6d47e343ef5d695a7b3bf7cf50c999545c882d5c (patch)
tree796bd5ca527b81f63ad5f07b439f7828c28cc3db /mk
parent10f4b69284d96d0dce18c269e32d839d7cb4d294 (diff)
downloadpkgsrc-6d47e343ef5d695a7b3bf7cf50c999545c882d5c.tar.gz
mk/help: clean up code for selecting relevant help topics
Diffstat (limited to 'mk')
-rw-r--r--mk/help/help.awk33
1 files changed, 16 insertions, 17 deletions
diff --git a/mk/help/help.awk b/mk/help/help.awk
index 90d80ded04e..0ac478d15f5 100644
--- a/mk/help/help.awk
+++ b/mk/help/help.awk
@@ -1,4 +1,4 @@
-# $NetBSD: help.awk,v 1.36 2020/05/03 08:49:16 rillig Exp $
+# $NetBSD: help.awk,v 1.37 2020/05/03 09:06:59 rillig Exp $
#
# This program extracts the inline documentation from *.mk files.
@@ -35,16 +35,19 @@ BEGIN {
# end of a file or by the end of all files. When there have been enough
# comment lines, the topic is considered worth printing.
#
-function end_of_topic( relevant, has_keywords) {
-
- if (comment_lines <= 2 || ignore_this_section) {
- if (array_is_empty(keywords)) {
- dprint("Ignoring section because of missing keywords.");
- } else if (comment_lines <= 2) {
- dprint("Ignoring section because of too small comment.");
- } else {
- dprint("Ignoring section because of a previous decision.");
- }
+function end_of_topic( relevant, has_keywords, skip_reason) {
+
+ skip_reason = \
+ array_is_empty(keywords) \
+ ? "Ignoring section because of missing keywords." \
+ : comment_lines <= 2 \
+ ? "Ignoring section because of too small comment." \
+ : ignore_this_section \
+ ? "Ignoring section because of a previous decision." \
+ : "";
+
+ if (skip_reason != "") {
+ dprint(skip_reason);
cleanup();
return;
}
@@ -52,12 +55,8 @@ function end_of_topic( relevant, has_keywords) {
for (k in keywords)
all_keywords[k]++;
- relevant = no;
- if (topic == ":all")
- for (k in keywords)
- relevant = yes;
- if (topic in keywords || lctopic in keywords || uctopic in keywords)
- relevant = yes;
+ relevant = topic in keywords || lctopic in keywords ||
+ uctopic in keywords || topic == ":all";
if (relevant && !print_index) {