Commit 89c16ab5 authored by Lutz Jänicke's avatar Lutz Jänicke
Browse files

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' :-)
parent 820aaa5f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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`"; \