aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-02-07 18:25:26 +0000
committerRichard Levitte <levitte@openssl.org>2000-02-07 18:25:26 +0000
commit1e8f28c49181f912f1562115ef604cd387227dfa (patch)
tree8b1e59ba7c93cd2dcb36ba70f6f9f9ef9d0b3afa /Makefile.org
parent7948febeca4c41368067f17ee3eb672df0d7f91a (diff)
downloadopenssl-1e8f28c49181f912f1562115ef604cd387227dfa.tar.gz
des_modes is a section 7 manual, so let's make sure that's where it ends up
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.org b/Makefile.org
index 245b6b55f4..d5a1620068 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -336,7 +336,8 @@ install: all
$(INSTALL_PREFIX)$(OPENSSLDIR)/lib \
$(INSTALL_PREFIX)$(OPENSSLDIR)/man/man1 \
$(INSTALL_PREFIX)$(OPENSSLDIR)/man/man3 \
- $(INSTALL_PREFIX)$(OPENSSLDIR)/man/man5
+ $(INSTALL_PREFIX)$(OPENSSLDIR)/man/man5 \
+ $(INSTALL_PREFIX)$(OPENSSLDIR)/man/man7
@for i in $(EXHEADER) ;\
do \
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
@@ -354,9 +355,9 @@ install: all
$(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
done
- @echo installing man 1
+ @echo installing man 1 and man 5
@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 --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`; ../../util/pod2man.pl --section=3 --center=OpenSSL --release=$(VERSION) `basename $$i` > $(INSTALL_PREFIX)$(INSTALLTOP)/man/man3/`basename $$i .pod`.3); done
+ @echo installing man 3 and man 7
+ @for i in doc/crypto/*.pod doc/ssl/*.pod; do (cd `dirname $$i`; fn=`basename $$i .pod`; sec=`[ "$$fn" = "des_modes" ] && echo 7 || echo 3`; ../../util/pod2man.pl --section=$$sec --center=OpenSSL --release=$(VERSION) `basename $$i` > $(INSTALL_PREFIX)$(INSTALLTOP)/man/man$$sec/`basename $$i .pod`.$$sec); done
# DO NOT DELETE THIS LINE -- make depend depends on it.