diff options
author | Mike Pritchard <mpp@FreeBSD.org> | 1999-07-30 19:15:16 +0000 |
---|---|---|
committer | Mike Pritchard <mpp@FreeBSD.org> | 1999-07-30 19:15:16 +0000 |
commit | 430256ad1639912c8359b888ad2cc1a0553d0e90 (patch) | |
tree | d064a7059ab405d6de348f7610562e5084821dcf /gnu/usr.bin/groff | |
parent | e753509f9fa015698c177ea43170e75c0c0468b1 (diff) | |
download | src-430256ad1639912c8359b888ad2cc1a0553d0e90.tar.gz src-430256ad1639912c8359b888ad2cc1a0553d0e90.zip |
Make direct calls to nroff work again. Rev 1.5 of contrib/gnu/nroff/nroff.sh
broke nroff because it added the '-S' option to the troff call, which
requires that the tmac.safer macro package be installed.
Since 90% of our *roff calls are probably generated by man(1), and
man(1) calls groff directly, I'm not really sure what rev 1.5 of nroff.sh
was trying to fix, but at least now nroff works again.
Broken by: imp
Notes
Notes:
svn path=/head/; revision=49291
Diffstat (limited to 'gnu/usr.bin/groff')
-rw-r--r-- | gnu/usr.bin/groff/tmac/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/usr.bin/groff/tmac/Makefile b/gnu/usr.bin/groff/tmac/Makefile index e6de5850c799..dcf7e9a63da2 100644 --- a/gnu/usr.bin/groff/tmac/Makefile +++ b/gnu/usr.bin/groff/tmac/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.15 1998/03/21 12:12:55 bde Exp $ .include "../Makefile.inc" @@ -15,8 +15,9 @@ LINKS= ${TMACDIR}/tmac.andoc ${TMACDIR}/tmac.an CLEANFILES= ${MAN7} ${MDOCFILES} ${STRIPFILES} tmac.groff_an FILES= tmac.andoc tmac.pic tmac.ps tmac.psnew tmac.psold\ - tmac.pspic tmac.psatk tmac.dvi tmac.tty tmac.tty-char tmac.X\ - tmac.Xps tmac.latin1 tmac.lj4 eqnrc troffrc + tmac.pspic tmac.psatk tmac.dvi tmac.safer tmac.tty \ + tmac.tty-char tmac.X tmac.Xps tmac.latin1 tmac.lj4 eqnrc \ + troffrc STRIPFILES= tmac.e tmac.s tmac.doc MDOCFILES= doc-common doc-ditroff doc-nroff doc-syms |