diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-27 04:31:13 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-27 04:31:13 +0000 |
commit | 0fab7a58bc4b014b8787f7147cb5635c64a7f0e1 (patch) | |
tree | 218752073c961bcf1ee8451535343051cabb0d8e /share/mk | |
parent | 9e8fa8aa66615d8fc37a631718f7b0ef7aa257cc (diff) |
Call nroff with the -Tascii option to keep groff from using -Tlatin1
which could result in it using 0xAD as a hyphenation character.
This looks ok with less on an xterm but not on others, eg. the
pcvt console. From NetBSD.
Diffstat (limited to 'share/mk')
-rw-r--r-- | share/mk/bsd.man.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.man.mk b/share/mk/bsd.man.mk index c5058f5dc08..ccfaec83ecb 100644 --- a/share/mk/bsd.man.mk +++ b/share/mk/bsd.man.mk @@ -1,9 +1,9 @@ -# $OpenBSD: bsd.man.mk,v 1.16 1999/05/02 20:55:55 millert Exp $ +# $OpenBSD: bsd.man.mk,v 1.17 1999/11/27 04:31:12 millert Exp $ # $NetBSD: bsd.man.mk,v 1.23 1996/02/10 07:49:33 jtc Exp $ # @(#)bsd.man.mk 5.2 (Berkeley) 5/11/90 MANTARGET?= cat -NROFF?= nroff +NROFF?= nroff -Tascii TBL?= tbl .if !target(.MAIN) |