diff options
author | rillig <rillig@pkgsrc.org> | 2007-06-04 08:11:07 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-06-04 08:11:07 +0000 |
commit | a3a72d22f3b15328cb92a05c55494b0ae8fa73ed (patch) | |
tree | e6ca402355e90ca5f17915655d1b344a6b093de5 | |
parent | ee5b4f997c3bc4eff6e2f98b5623418efa668d5e (diff) | |
download | pkgsrc-a3a72d22f3b15328cb92a05c55494b0ae8fa73ed.tar.gz |
Keywords may be separated by commas.
-rw-r--r-- | mk/help/help.awk | 4 |
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; } } |