diff options
author | Richard Levitte <levitte@openssl.org> | 2000-01-27 21:34:03 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-01-27 21:34:03 +0100 |
commit | 3ac60a612ebc7ed5c5c9b1c5a859ad8d294cd011 (patch) | |
tree | f9835ff9ff90e1f29382a24c023a7bdae997a34f /Makefile.org | |
parent | Since pod2man is still evolving, and some sites (among others dev.openssl.org) (diff) | |
download | openssl-3ac60a612ebc7ed5c5c9b1c5a859ad8d294cd011.tar.xz openssl-3ac60a612ebc7ed5c5c9b1c5a859ad8d294cd011.zip |
Use the pod2man that comes with OpenSSL. Make it so config(5) really
ends up in section 5.
Diffstat (limited to 'Makefile.org')
-rw-r--r-- | Makefile.org | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.org b/Makefile.org index 748b01d833..0f370d2ea5 100644 --- a/Makefile.org +++ b/Makefile.org @@ -335,7 +335,8 @@ install: all $(INSTALL_PREFIX)$(OPENSSLDIR)/private \ $(INSTALL_PREFIX)$(OPENSSLDIR)/lib \ $(INSTALL_PREFIX)$(OPENSSLDIR)/man/man1 \ - $(INSTALL_PREFIX)$(OPENSSLDIR)/man/man3 + $(INSTALL_PREFIX)$(OPENSSLDIR)/man/man3 \ + $(INSTALL_PREFIX)$(OPENSSLDIR)/man/man5 @for i in $(EXHEADER) ;\ do \ (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ @@ -354,8 +355,8 @@ install: all chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \ done @echo installing man 1 - @for i in doc/apps/*.pod; do (cd `dirname $$i`; pod2man --section=1 --date=`date +%Y-%m-%d` --center=OpenSSL --release=$(VERSION) `basename $$i` > $(INSTALL_PREFIX)$(INSTALLTOP)/man/man1/`basename $$i .pod`.1); done + @for i in doc/apps/*.pod; do (cd `dirname $$i`; fn=`basename $$i .pod`; sec=`[ "$$fn" = "config" ] && echo 5 || echo 1`; ../../util/pod2man.pl --section=$$sec --date=`date +%Y-%m-%d` --center=OpenSSL --release=$(VERSION) `basename $$i` > $(INSTALL_PREFIX)$(INSTALLTOP)/man/man$$sec/`basename $$i .pod`.$$sec); done @echo installing man 3 - @for i in doc/crypto/*.pod doc/ssl/*.pod; do (cd `dirname $$i`; pod2man --section=3 --date=`date +%Y-%m-%d` --center=OpenSSL --release=$(VERSION) `basename $$i` > $(INSTALL_PREFIX)$(INSTALLTOP)/man/man3/`basename $$i .pod`.3); done + @for i in doc/crypto/*.pod doc/ssl/*.pod; do (cd `dirname $$i`; ../../util/pod2man.pl --section=3 --date=`date +%Y-%m-%d` --center=OpenSSL --release=$(VERSION) `basename $$i` > $(INSTALL_PREFIX)$(INSTALLTOP)/man/man3/`basename $$i .pod`.3); done # DO NOT DELETE THIS LINE -- make depend depends on it. |