From: Michael Haubenwallner Date: Wed, 13 Feb 2019 15:52:04 +0000 (+0100) Subject: Windows/Cygwin dlls need the executable bit set X-Git-Tag: openssl-3.0.0-alpha1~2538 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fa63e45262971b9c2a6aeb33db8c52a5a84fc8b5;p=oweals%2Fopenssl.git Windows/Cygwin dlls need the executable bit set CLA: trivial Reviewed-by: Matt Caswell Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/8226) --- diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 7705b03b8e..0b744bb7af 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(); "" -}; \