mirror of
https://github.com/python/cpython.git
synced 2025-12-04 08:34:25 +00:00
bpo-34245: install Python shared library with more standard 0755 mode (GH-8492)
This commit is contained in:
parent
de9e9b476e
commit
25648d05ac
2 changed files with 3 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue