bpo-34245: install Python shared library with more standard 0755 mode (GH-8492)

This commit is contained in:
jdemeyer 2018-12-09 08:46:50 +01:00 committed by Ned Deily
parent de9e9b476e
commit 25648d05ac
2 changed files with 3 additions and 2 deletions

View File

@ -69,8 +69,7 @@ INSTALL_SCRIPT= @INSTALL_SCRIPT@
INSTALL_DATA= @INSTALL_DATA@
# Shared libraries must be installed with executable mode on some systems;
# rather than figuring out exactly which, we always give them executable mode.
# Also, making them read-only seems to be a good idea...
INSTALL_SHARED= ${INSTALL} -m 555
INSTALL_SHARED= ${INSTALL} -m 755
MKDIR_P= @MKDIR_P@

View File

@ -0,0 +1,2 @@
The Python shared library is now installed with write permission (mode 0755),
which is the standard way of installing such libraries.