diff options
author | schwarze <> | 2010-09-09 22:50:47 +0000 |
---|---|---|
committer | schwarze <> | 2010-09-09 22:50:47 +0000 |
commit | d9f82ce863bd9db2aa9895c1ca5d07d82cc577ca (patch) | |
tree | 263b6d34c8a29f021bcbaabb21efd04592e4cd51 | |
parent | 7d30a0421744354f691ef48ea7c33d26a03cd44d (diff) | |
download | openbsd-d9f82ce863bd9db2aa9895c1ca5d07d82cc577ca.tar.gz openbsd-d9f82ce863bd9db2aa9895c1ca5d07d82cc577ca.tar.bz2 openbsd-d9f82ce863bd9db2aa9895c1ca5d07d82cc577ca.zip |
Use mandoc instead of groff to build PostScript manuals; note that
these are not built by default, but only built when MANPS is set.
kristaps@ and jmc@ agree with the idea,
and the patch doesn't bother deraadt@ at all
-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 7dc23fbe79..0f2831594e 100644 --- a/src/lib/libssl/man/Makefile +++ b/src/lib/libssl/man/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.16 2010/04/03 19:34:00 schwarze Exp $ | 1 | # $OpenBSD: Makefile,v 1.17 2010/09/09 22:50:47 schwarze Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> # for NOMAN | 3 | .include <bsd.own.mk> # for NOMAN |
4 | 4 | ||
@@ -290,7 +290,7 @@ ${page}.cat3: ${src}.pod | |||
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} | \ |
293 | nroff -Tps -mandoc > ${.TARGET} | 293 | ${MANDOC} -Tps > ${.TARGET} |
294 | . endif | 294 | . endif |
295 | .endfor | 295 | .endfor |
296 | 296 | ||
@@ -1092,7 +1092,7 @@ maninstall: | |||
1092 | 1092 | ||
1093 | .pod.ps${sect}: | 1093 | .pod.ps${sect}: |
1094 | ${POD2MAN} --section=${sect} --name=${*:U} ${.ALLSRC} | \ | 1094 | ${POD2MAN} --section=${sect} --name=${*:U} ${.ALLSRC} | \ |
1095 | nroff -Tps -mandoc > ${.TARGET} | 1095 | ${MANDOC} -Tps > ${.TARGET} |
1096 | .endfor | 1096 | .endfor |
1097 | 1097 | ||
1098 | .include <bsd.obj.mk> | 1098 | .include <bsd.obj.mk> |