From: Richard Levitte Date: Wed, 14 Nov 2001 08:08:04 +0000 (+0000) Subject: Apply the following change from the main trunk: X-Git-Tag: OpenSSL_0_9_6c~47 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7be09992c652967fa5d29f531a07fca49fb94483;p=oweals%2Fopenssl.git Apply the following change from the main trunk: 2000-11-14 12:05 jaenicke * Makefile.org (1.115): Some platforms (namely HP-UX) require the 'x' bit set for shared libraries. For performance reasons, it is also recommended to make the (mmap'ed) shared library 'read-only'. -> New permissions for installed shared libraries = 555 This doesn't hurt anybody, provided the installation is performed with 'cp -f' :-) --- diff --git a/Makefile.org b/Makefile.org index 425e0ea651..a7be3406aa 100644 --- a/Makefile.org +++ b/Makefile.org @@ -526,8 +526,8 @@ install: all install_docs do \ if [ -f "$$i" ]; then \ ( echo installing $$i; \ - cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \ - chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \ + cp -f $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \ + chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \ fi \ done; \ ( here="`pwd`"; \