From: Bodo Möller Date: Tue, 26 Sep 2000 12:23:55 +0000 (+0000) Subject: Verbose output when installing manual pages so that you see that X-Git-Tag: OpenSSL_0_9_6~1^2~17 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2eaad87f36915900d50355e09e34c6fe2e487364;p=oweals%2Fopenssl.git Verbose output when installing manual pages so that you see that something is going on (and what). --- diff --git a/Makefile.org b/Makefile.org index c6f660954b..0f410c08ae 100644 --- a/Makefile.org +++ b/Makefile.org @@ -473,19 +473,19 @@ install_docs: $(INSTALL_PREFIX)$(MANDIR)/man3 \ $(INSTALL_PREFIX)$(MANDIR)/man5 \ $(INSTALL_PREFIX)$(MANDIR)/man7 - @echo installing man 1 and man 5 @for i in doc/apps/*.pod; do \ fn=`basename $$i .pod`; \ sec=`[ "$$fn" = "config" ] && echo 5 || echo 1`; \ + echo "installing man$$sec/`basename $$i .pod`.$$sec"; \ (cd `dirname $$i`; \ $(PERL) ../../util/pod2man.pl --section=$$sec --center=OpenSSL \ --release=$(VERSION) `basename $$i`) \ > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \ done - @echo installing man 3 and man 7 @for i in doc/crypto/*.pod doc/ssl/*.pod; do \ fn=`basename $$i .pod`; \ sec=`[ "$$fn" = "des_modes" ] && echo 7 || echo 3`; \ + echo "installing man$$sec/`basename $$i .pod`.$$sec"; \ (cd `dirname $$i`; \ $(PERL) ../../util/pod2man.pl --section=$$sec --center=OpenSSL \ --release=$(VERSION) `basename $$i`) \