bpo-34245: install Python shared library with more standard 0755 mode (GH-8492)
This commit is contained in:
parent
de9e9b476e
commit
25648d05ac
|
@ -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@
|
||||
|
||||
|
|
|
@ -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.
|
Loading…
Reference in New Issue