diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-03-29 15:44:35 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-03-29 15:44:35 +0000 |
commit | 613bef16026c365f03942eab77a18ec87d0c4be3 (patch) | |
tree | 15d12e34e0d1fe8f414f0790c52e504597dd36b8 /lib | |
parent | 0bcd0314deca0c03467340aba79d120dfa407ad0 (diff) |
Run pod2man with the basename of the pod page so the heading is normal.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/Makefile.bsd-wrapper | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libssl/Makefile.bsd-wrapper b/lib/libssl/Makefile.bsd-wrapper index 782252b8b62..382e04b3810 100644 --- a/lib/libssl/Makefile.bsd-wrapper +++ b/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) |