Skip to content

Commit 5a7aba6

Browse files
authored
Merge pull request #146 from carandraug/no-execute-perm-on-so-files
Makefile: do not install shared libraries with executable permissions
2 parents 9693a38 + 7e197f5 commit 5a7aba6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ install_dso: dso
6161
@echo "Performing DSO installation."
6262
@echo
6363
$(INSTALL) -d $(DESTDIR)$(LIBEXECDIR)
64-
$(INSTALL) src/mod_python.so $(DESTDIR)$(LIBEXECDIR)
64+
$(INSTALL) -m 0644 src/mod_python.so $(DESTDIR)$(LIBEXECDIR)
6565

6666
install_py_lib:
6767
cd dist && $(MAKE) install_py_lib

0 commit comments

Comments
 (0)