Kaydet (Commit) 25648d05 authored tarafından jdemeyer's avatar jdemeyer Kaydeden (comit) Ned Deily

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

üst de9e9b47
......@@ -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@
......
The Python shared library is now installed with write permission (mode 0755),
which is the standard way of installing such libraries.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment