patch-util_install_helper_sh 863 B

12345678910111213141516171819202122
  1. --- libfuse-fuse-3.16.2.orig/util/install_helper.sh 2023-10-10 09:38:49.000000000 +0200
  2. +++ libfuse-fuse-3.16.2/util/install_helper.sh 2024-02-11 19:19:21.423803542 +0100
  3. @@ -37,19 +37,3 @@ if $useroot; then
  4. fi
  5. fi
  6. -if [ "${udevrulesdir}" != "" ]; then
  7. - install -D -m 644 "${MESON_SOURCE_ROOT}/util/udev.rules" \
  8. - "${DESTDIR}${udevrulesdir}/99-fuse3.rules"
  9. -fi
  10. -
  11. -if [ "$initscriptdir" != "" ]; then
  12. - install -D -m 755 "${MESON_SOURCE_ROOT}/util/init_script" \
  13. - "${DESTDIR}${initscriptdir}/fuse3"
  14. -
  15. - if test -x /usr/sbin/update-rc.d && test -z "${DESTDIR}"; then
  16. - /usr/sbin/update-rc.d fuse3 start 34 S . start 41 0 6 . || /bin/true
  17. - else
  18. - echo "== FURTHER ACTION REQUIRED =="
  19. - echo "Make sure that your init system will start the ${DESTDIR}${initscriptdir}/init.d/fuse3 init script"
  20. - fi
  21. -fi