From 062de150ba4de010b35578690177e4544d3fce4c Mon Sep 17 00:00:00 2001 From: millert <> Date: Wed, 29 Mar 2000 15:44:34 +0000 Subject: Run pod2man with the basename of the pod page so the heading is normal. --- src/lib/libssl/Makefile.bsd-wrapper | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src') 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 @@ # Build wrapper for OpenSSL -# $OpenBSD: Makefile.bsd-wrapper,v 1.14 2000/03/29 09:28:31 deraadt Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.15 2000/03/29 15:44:34 millert Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -179,14 +179,14 @@ MANALL= .PATH: ${.CURDIR}/src/doc/crypto ${.CURDIR}/src/doc/ssl ${.CURDIR}/src/doc/apps .SUFFIXES: .pod .pod.cat3: - pod2man --section=3 --official --center='OpenBSD Reference Manual' \ - --release="OpenBSD `uname -r`" ${.ALLSRC} | \ - nroff -Tascii -man > ${.TARGET} + ( cd `dirname ${.ALLSRC}` && pod2man --section=3 --official \ + --center='OpenBSD Reference Manual' --release="OpenBSD `uname -r`" \ + `basename ${.ALLSRC}` ) | nroff -Tascii -man > ${.TARGET} .pod.cat1: - pod2man --section=1 --official --center='OpenBSD Reference Manual' \ - --release="OpenBSD `uname -r`" ${.ALLSRC} | \ - nroff -Tascii -man > ${.TARGET} + ( cd `dirname ${.ALLSRC}` && pod2man --section=1 --official \ + --center='OpenBSD Reference Manual' --release="OpenBSD `uname -r`" \ + `basename ${.ALLSRC}` ) | nroff -Tascii -man > ${.TARGET} .if exists(src-patent) -- cgit v1.2.3-55-g6feb