summaryrefslogtreecommitdiff
path: root/mk/help
diff options
context:
space:
mode:
authorrillig <rillig>2007-06-04 08:11:07 +0000
committerrillig <rillig>2007-06-04 08:11:07 +0000
commitbd167bfd27d58aeb9e4a590d32cda4c79fd62fcb (patch)
treee6ca402355e90ca5f17915655d1b344a6b093de5 /mk/help
parentf33e39f35c21c774339b4853b5e6ce63818c27f6 (diff)
downloadpkgsrc-bd167bfd27d58aeb9e4a590d32cda4c79fd62fcb.tar.gz
Keywords may be separated by commas.
Diffstat (limited to 'mk/help')
-rw-r--r--mk/help/help.awk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/help/help.awk b/mk/help/help.awk
index 5feaa626687..3a9460e22cc 100644
--- a/mk/help/help.awk
+++ b/mk/help/help.awk
@@ -1,4 +1,4 @@
-# $NetBSD: help.awk,v 1.14 2007/05/24 05:29:06 rillig Exp $
+# $NetBSD: help.awk,v 1.15 2007/06/04 08:11:07 rillig Exp $
#
# This program extracts the inline documentation from *.mk files.
@@ -70,7 +70,7 @@ always {
($1 == "#" && $2 == "Keywords:") {
for (i = 3; i <= NF; i++) {
w = ($i == toupper($i)) ? tolower($i) : $i;
- if (w == lctopic) {
+ if (w == lctopic || w == lctopic",") {
relevant = yes;
}
}