diff options
author | schwarze <> | 2010-04-03 19:34:00 +0000 |
---|---|---|
committer | schwarze <> | 2010-04-03 19:34:00 +0000 |
commit | da6f36e6b9f29c2a42d837dc544eba52444c508d (patch) | |
tree | be6693fd2d66be1c3e489bac3ca56da79ab4e7be | |
parent | 6a1c1ffee0cc71f97b998e209826f95c42116f21 (diff) | |
download | openbsd-da6f36e6b9f29c2a42d837dc544eba52444c508d.tar.gz openbsd-da6f36e6b9f29c2a42d837dc544eba52444c508d.tar.bz2 openbsd-da6f36e6b9f29c2a42d837dc544eba52444c508d.zip |
Build all manual pages in base with mandoc(1) instead of groff,
excepting the tbl(1) pages, which are less than twenty.
"commit the diff that enables it, now" deraadt@
-rw-r--r-- | src/lib/libssl/man/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libssl/man/Makefile b/src/lib/libssl/man/Makefile index 18560c7eb3..7dc23fbe79 100644 --- a/src/lib/libssl/man/Makefile +++ b/src/lib/libssl/man/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.15 2009/04/10 06:04:49 djm Exp $ | 1 | # $OpenBSD: Makefile,v 1.16 2010/04/03 19:34:00 schwarze Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> # for NOMAN | 3 | .include <bsd.own.mk> # for NOMAN |
4 | 4 | ||
@@ -286,7 +286,7 @@ PSALL= ${MANALL:S/.cat1/.ps1/g:S/.cat2/.ps2/g:S/.cat3/.ps3/g:S/.cat4/.ps4/g:S/.c | |||
286 | 286 | ||
287 | ${page}.cat3: ${src}.pod | 287 | ${page}.cat3: ${src}.pod |
288 | ${POD2MAN} --section=3 --name=${page:U} ${.ALLSRC} | \ | 288 | ${POD2MAN} --section=3 --name=${page:U} ${.ALLSRC} | \ |
289 | nroff -Tascii -mandoc > ${.TARGET} | 289 | ${MANDOC} > ${.TARGET} |
290 | . if MANPS | 290 | . if MANPS |
291 | ${page}.ps3: ${src}.pod | 291 | ${page}.ps3: ${src}.pod |
292 | ${POD2MAN} --section=3 --name=${page:U} ${.ALLSRC} | \ | 292 | ${POD2MAN} --section=3 --name=${page:U} ${.ALLSRC} | \ |
@@ -1088,7 +1088,7 @@ maninstall: | |||
1088 | 1088 | ||
1089 | .pod.cat${sect}: | 1089 | .pod.cat${sect}: |
1090 | ${POD2MAN} --section=${sect} --name=${*:U} ${.ALLSRC} | \ | 1090 | ${POD2MAN} --section=${sect} --name=${*:U} ${.ALLSRC} | \ |
1091 | nroff -Tascii -mandoc > ${.TARGET} | 1091 | ${MANDOC} > ${.TARGET} |
1092 | 1092 | ||
1093 | .pod.ps${sect}: | 1093 | .pod.ps${sect}: |
1094 | ${POD2MAN} --section=${sect} --name=${*:U} ${.ALLSRC} | \ | 1094 | ${POD2MAN} --section=${sect} --name=${*:U} ${.ALLSRC} | \ |