From: Lutz Jänicke Date: Fri, 19 Jul 2002 16:31:36 +0000 (+0000) Subject: HP-UX shared libraries must be +x and should be -w. It doesn't hurt on X-Git-Tag: OpenSSL_0_9_7-beta3~16 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2f6f2970c41b9edcda03c88a509af604462b1886;p=oweals%2Fopenssl.git HP-UX shared libraries must be +x and should be -w. It doesn't hurt on other platforms. Submitted by: Reviewed by: PR: 134 --- diff --git a/Makefile.org b/Makefile.org index cd7316776a..4209dd1bff 100644 --- a/Makefile.org +++ b/Makefile.org @@ -715,7 +715,7 @@ install: all install_docs ( echo installing $$i; \ if [ "$(PLATFORM)" != "Cygwin" ]; then \ cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \ - chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \ + chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \ else \ c=`echo $$i | sed 's/^lib/cyg/'`; \ cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \