summaryrefslogtreecommitdiff
path: root/Makefile.org
diff options
context:
space:
mode:
authorLutz Jänicke <jaenicke@openssl.org>2000-11-14 11:05:10 +0000
committerLutz Jänicke <jaenicke@openssl.org>2000-11-14 11:05:10 +0000
commit89c16ab53e9f8742144eef2b627d09b0797e7b87 (patch)
tree4bd329f65f449165c2932232e42673d975a9453a /Makefile.org
parent820aaa5fc54fff1eea1b1fc743749977b7e1375d (diff)
downloadopenssl-new-89c16ab53e9f8742144eef2b627d09b0797e7b87.tar.gz
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' :-)
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.org b/Makefile.org
index 267cb3ad5d..ca16ab09d5 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -505,8 +505,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`"; \