diff options
author | wosch <wosch@FreeBSD.org> | 1997-02-16 22:23:44 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1997-02-16 22:23:44 +0000 |
commit | b571d817ff6a40b6964e0c26bae77d2b9f813807 (patch) | |
tree | 5f2ae89dcf415f3d48fa74736dc5c83b3056c03c /share | |
parent | 13be5f8d6c301f2b0dc46cc385f49a224955464c (diff) | |
download | FreeBSD-src-b571d817ff6a40b6964e0c26bae77d2b9f813807.zip FreeBSD-src-b571d817ff6a40b6964e0c26bae77d2b9f813807.tar.gz |
Bugfixes for HTML output:
- use ${MACROS} for macro package and not hard-coded -ms
Note: -me is currently not supported by unroff(1).
- use only ${SRCS} as input files.
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.doc.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/share/mk/bsd.doc.mk b/share/mk/bsd.doc.mk index 9fd8d80..23a9bb6 100644 --- a/share/mk/bsd.doc.mk +++ b/share/mk/bsd.doc.mk @@ -54,7 +54,7 @@ PAGES?= 1- UNROFF?= unroff HTML_SPLIT?= yes -UNROFFFLAGS?= -ms -fhtml +UNROFFFLAGS?= -fhtml .if ${HTML_SPLIT} == "yes" UNROFFFLAGS+= split=1 .endif @@ -123,7 +123,8 @@ SRCDIR?= ${.CURDIR} .if !target(${DFILE}) .if ${PRINTERDEVICE} == "html" ${DFILE}: ${SRCS} ${EXTRA} ${OBJS} - cd ${SRCDIR}; ${UNROFF} ${UNROFFFLAGS} document=${DOC} ${.ALLSRC} + cd ${SRCDIR}; ${UNROFF} ${MACROS} ${UNROFFFLAGS} \ + document=${DOC} ${SRCS} .else ${DFILE}:: ${SRCS} ${EXTRA} ${OBJS} |