diff options
author | wiz <wiz@pkgsrc.org> | 2003-02-09 14:59:12 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-02-09 14:59:12 +0000 |
commit | 620d99bab028512652b537e2eb559c27a3bfd6b5 (patch) | |
tree | b0a8d73b1155f5d80040b4a47622c69e5b40d118 /mk/bsd.pkg.mk | |
parent | 8d8efc29c878dd7d20f82e5b9efc8bf9c1ba2975 (diff) | |
download | pkgsrc-620d99bab028512652b537e2eb559c27a3bfd6b5.tar.gz |
Open/close HTML mark-up in the correct order. Noted by Kevin P. Neal.
Diffstat (limited to 'mk/bsd.pkg.mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 3d755733cc6..7cbb4e70e26 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1137 2003/02/09 14:38:51 wiz Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1138 2003/02/09 14:59:12 wiz Exp $ # # This file is in the public domain. # @@ -3626,7 +3626,7 @@ show-vulnerabilities-html: if [ -f ${DISTDIR}/vulnerabilities ]; then \ ${AWK} '/^${PKGBASE}[-<>=]+[0-9]/ { gsub("\<", "\\<", $$1); \ gsub("\>", "\\>", $$1); \ - printf("<STRONG><LI>%s has a %s exploit (see <a href=\"%s\">%s</a> for more details)</STRONG>\n", $$1, $$2, $$3, $$3) }' \ + printf("<LI><STRONG>%s has a %s exploit (see <a href=\"%s\">%s</a> for more details)</STRONG></LI>\n", $$1, $$2, $$3, $$3) }' \ ${DISTDIR}/vulnerabilities; \ fi |