summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormillert <>2000-03-29 15:44:34 +0000
committermillert <>2000-03-29 15:44:34 +0000
commit062de150ba4de010b35578690177e4544d3fce4c (patch)
tree14ddb810a4d791fa4180912e5185f2edfac7a51e /src
parent04a7947ba2feee8f0eea1e1607c1882cb0240baa (diff)
downloadopenbsd-062de150ba4de010b35578690177e4544d3fce4c.tar.gz
openbsd-062de150ba4de010b35578690177e4544d3fce4c.tar.bz2
openbsd-062de150ba4de010b35578690177e4544d3fce4c.zip
Run pod2man with the basename of the pod page so the heading is normal.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libssl/Makefile.bsd-wrapper14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libssl/Makefile.bsd-wrapper b/src/lib/libssl/Makefile.bsd-wrapper
index 782252b8b6..382e04b381 100644
--- a/src/lib/libssl/Makefile.bsd-wrapper
+++ b/src/lib/libssl/Makefile.bsd-wrapper
@@ -1,5 +1,5 @@
1# Build wrapper for OpenSSL 1# Build wrapper for OpenSSL
2# $OpenBSD: Makefile.bsd-wrapper,v 1.14 2000/03/29 09:28:31 deraadt Exp $ 2# $OpenBSD: Makefile.bsd-wrapper,v 1.15 2000/03/29 15:44:34 millert Exp $
3 3
4# Our lndir is hacked; specify a full path to avoid potential conflicts 4# Our lndir is hacked; specify a full path to avoid potential conflicts
5# with the one installed with X11. 5# with the one installed with X11.
@@ -179,14 +179,14 @@ MANALL=
179.PATH: ${.CURDIR}/src/doc/crypto ${.CURDIR}/src/doc/ssl ${.CURDIR}/src/doc/apps 179.PATH: ${.CURDIR}/src/doc/crypto ${.CURDIR}/src/doc/ssl ${.CURDIR}/src/doc/apps
180.SUFFIXES: .pod 180.SUFFIXES: .pod
181.pod.cat3: 181.pod.cat3:
182 pod2man --section=3 --official --center='OpenBSD Reference Manual' \ 182 ( cd `dirname ${.ALLSRC}` && pod2man --section=3 --official \
183 --release="OpenBSD `uname -r`" ${.ALLSRC} | \ 183 --center='OpenBSD Reference Manual' --release="OpenBSD `uname -r`" \
184 nroff -Tascii -man > ${.TARGET} 184 `basename ${.ALLSRC}` ) | nroff -Tascii -man > ${.TARGET}
185 185
186.pod.cat1: 186.pod.cat1:
187 pod2man --section=1 --official --center='OpenBSD Reference Manual' \ 187 ( cd `dirname ${.ALLSRC}` && pod2man --section=1 --official \
188 --release="OpenBSD `uname -r`" ${.ALLSRC} | \ 188 --center='OpenBSD Reference Manual' --release="OpenBSD `uname -r`" \
189 nroff -Tascii -man > ${.TARGET} 189 `basename ${.ALLSRC}` ) | nroff -Tascii -man > ${.TARGET}
190 190
191 191
192.if exists(src-patent) 192.if exists(src-patent)