[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Fri Feb 19 21:39:11 UTC 2016
The branch master has been updated
via ce5ed82f829d77c896a68990fba459cdad5f765d (commit)
from 464dadb29db534981330cddec43336108cbb0f65 (commit)
- Log -----------------------------------------------------------------
commit ce5ed82f829d77c896a68990fba459cdad5f765d
Author: Richard Levitte <levitte at openssl.org>
Date: Fri Feb 19 22:23:28 2016 +0100
Fix Configurations/unix-Makefile.tmpl
It was turning off output again in two place where it should have
turned it on.
Reviewed-by: Rich Salz <rsalz at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
Configurations/unix-Makefile.tmpl | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl
index 57108ce..07e5a41 100644
--- a/Configurations/unix-Makefile.tmpl
+++ b/Configurations/unix-Makefile.tmpl
@@ -316,7 +316,7 @@ install_dev:
chmod 644 $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new; \
mv -f $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2.new \
$(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
- : {- output_off() unless windowsdll(); "" -}; \
+ : {- output_on() unless windowsdll(); "" -}; \
done
@ : {- output_on() if $config{no_shared}; "" -}
@$(PERL) $(SRCDIR)/util/mkdir-p.pl $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
@@ -361,7 +361,7 @@ uninstall_dev:
: {- output_on() if windowsdll(); "" -}{- output_off() unless windowsdll(); "" -}; \
echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2"; \
$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/$$fn2; \
- : {- output_off() unless windowsdll(); "" -}; \
+ : {- output_on() unless windowsdll(); "" -}; \
done
@ : {- output_on() if $config{no_shared}; "" -}
@echo "$(RM) $(DESTDIR)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc"
More information about the openssl-commits
mailing list