From 53cccb2d3b1db7bbc8ab9526594a451d9308a6f4 Mon Sep 17 00:00:00 2001 From: Doug Barton Date: Fri, 15 Dec 2006 18:02:20 +0000 Subject: [PATCH] Fix the problem with the nsupdate(8) man page reported in the PR by removing spurious .HP tags, thereby actually allowing the commands to show up in the man page output, and making the style consistent with the nslookup(1) man page. [1] While I'm here, fix the markup on the first command reference in nslookup(1). PR: docs/98009 [1] Submitted by: Dmitry Kazarov --- usr.bin/nslookup/Makefile | 2 ++ usr.bin/nsupdate/Makefile | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/usr.bin/nslookup/Makefile b/usr.bin/nslookup/Makefile index c8a2dda6ca8..2a4e8c654d5 100644 --- a/usr.bin/nslookup/Makefile +++ b/usr.bin/nslookup/Makefile @@ -17,4 +17,6 @@ CFLAGS+= -I${SRCDIR}/include DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} +MANFILTER= sed -e "s@^host \[server\]@\\\fBhost\\\fR \\\fI[server]\\\fR@" + .include diff --git a/usr.bin/nsupdate/Makefile b/usr.bin/nsupdate/Makefile index 3bc6506df99..26efd146dcb 100644 --- a/usr.bin/nsupdate/Makefile +++ b/usr.bin/nsupdate/Makefile @@ -19,6 +19,7 @@ LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} MAN= nsupdate.8 -MANFILTER= sed -e "s@/etc/named\.conf@/etc/namedb/named.conf@g" +MANFILTER= sed -e "s@/etc/named\.conf@/etc/namedb/named.conf@g" \ + -e "s@^\.HP [0-9]* @@" .include