logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>

install-perms.patch (734B)


  1. SPDX-FileCopyrightText: 2023 fosslinux <fosslinux@aussies.space>
  2. SPDX-License-Identifier: PSF-2.0
  3. Install libraries with 755 instead of 555 so we can strip them. (This
  4. is what is in modern versions of python).
  5. --- Python-3.4.10/Makefile.pre.in 2023-03-15 21:49:08.274186777 +1100
  6. +++ Python-3.4.10/Makefile.pre.in 2023-03-15 21:50:02.466143662 +1100
  7. @@ -54,8 +54,7 @@
  8. INSTALL_DATA= @INSTALL_DATA@
  9. # Shared libraries must be installed with executable mode on some systems;
  10. # rather than figuring out exactly which, we always give them executable mode.
  11. -# Also, making them read-only seems to be a good idea...
  12. -INSTALL_SHARED= ${INSTALL} -m 555
  13. +INSTALL_SHARED= ${INSTALL} -m 755
  14. MAKESETUP= $(srcdir)/Modules/makesetup