summaryrefslogtreecommitdiffstats
path: root/lib/libssl/man
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2010-09-09 22:50:47 +0000
committerschwarze <schwarze@openbsd.org>2010-09-09 22:50:47 +0000
commitbb5ede8f43f95f6c37e535dbc04db0d13963d305 (patch)
tree12bd8c824fed2b0ed3083ae9d4784bc82779e51e /lib/libssl/man
parentSigh, check in the actual diff, not a backout of th previous change. (diff)
downloadwireguard-openbsd-bb5ede8f43f95f6c37e535dbc04db0d13963d305.tar.xz
wireguard-openbsd-bb5ede8f43f95f6c37e535dbc04db0d13963d305.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
Diffstat (limited to 'lib/libssl/man')
-rw-r--r--lib/libssl/man/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/man/Makefile b/lib/libssl/man/Makefile
index 7dc23fbe799..0f2831594e0 100644
--- a/lib/libssl/man/Makefile
+++ b/lib/libssl/man/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.16 2010/04/03 19:34:00 schwarze Exp $
+# $OpenBSD: Makefile,v 1.17 2010/09/09 22:50:47 schwarze Exp $
.include <bsd.own.mk> # for NOMAN
@@ -290,7 +290,7 @@ ${page}.cat3: ${src}.pod
. if MANPS
${page}.ps3: ${src}.pod
${POD2MAN} --section=3 --name=${page:U} ${.ALLSRC} | \
- nroff -Tps -mandoc > ${.TARGET}
+ ${MANDOC} -Tps > ${.TARGET}
. endif
.endfor
@@ -1092,7 +1092,7 @@ maninstall:
.pod.ps${sect}:
${POD2MAN} --section=${sect} --name=${*:U} ${.ALLSRC} | \
- nroff -Tps -mandoc > ${.TARGET}
+ ${MANDOC} -Tps > ${.TARGET}
.endfor
.include <bsd.obj.mk>