aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Haubenwallner <michael.haubenwallner@ssi-schaefer.com>2019-02-13 16:52:04 +0100
committerRichard Levitte <levitte@openssl.org>2019-02-13 20:00:28 +0100
commitfa63e45262971b9c2a6aeb33db8c52a5a84fc8b5 (patch)
treefa40cf6138b0021ed31003d6a793d66d60ca9afb
parent953315ae60e135057e308ebd0778ed823d620970 (diff)
downloadopenssl-fa63e45262971b9c2a6aeb33db8c52a5a84fc8b5.zip
openssl-fa63e45262971b9c2a6aeb33db8c52a5a84fc8b5.tar.gz
openssl-fa63e45262971b9c2a6aeb33db8c52a5a84fc8b5.tar.bz2
Windows/Cygwin dlls need the executable bit set
CLA: trivial Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/8226)
-rw-r--r--Configurations/unix-Makefile.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl
index 7705b03..0b744bb 100644
--- a/Configurations/unix-Makefile.tmpl
+++ b/Configurations/unix-Makefile.tmpl
@@ -622,7 +622,7 @@ install_runtime_libs: build_libs
: {- output_off() unless windowsdll(); "" -}; \
$(ECHO) "install $$s -> $(DESTDIR)$(INSTALLTOP)/bin/$$fn"; \
cp $$s $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
- chmod 644 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
+ chmod 755 $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new; \
mv -f $(DESTDIR)$(INSTALLTOP)/bin/$$fn.new \
$(DESTDIR)$(INSTALLTOP)/bin/$$fn; \
: {- output_on() unless windowsdll(); "" -}{- output_off() if windowsdll(); "" -}; \