summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorjdemeyer <jdemeyer@cage.ugent.be>2018-12-09 07:46:50 (GMT)
committerNed Deily <nad@python.org>2018-12-09 07:46:50 (GMT)
commit25648d05ac3d74c436f951579bbb716372fb8cc7 (patch)
treee75373cccbdc92397f4ecf3b0ea8d3b79a7f8c78 /Makefile.pre.in
parentde9e9b476ec4abfb0b9161cff0e86bb7085ca8c6 (diff)
downloadcpython-25648d05ac3d74c436f951579bbb716372fb8cc7.zip
cpython-25648d05ac3d74c436f951579bbb716372fb8cc7.tar.gz
cpython-25648d05ac3d74c436f951579bbb716372fb8cc7.tar.bz2
bpo-34245: install Python shared library with more standard 0755 mode (GH-8492)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 02ce0af..f16eb96 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -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@