summary refs log tree commit diff
path: root/pkgs/os-specific/linux/fuse/fuse3-install.patch
blob: 769e3088664cd0c15fdc8d2eba700bfca792ec8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
--- a/util/install_helper.sh	2023-08-26 22:12:11.028651669 +0200
+++ b/util/install_helper.sh	2023-08-26 22:38:03.165058694 +0200
@@ -39,12 +39,12 @@
 
 if [ "${udevrulesdir}" != "" ]; then
     install -D -m 644 "${MESON_SOURCE_ROOT}/util/udev.rules" \
-        "${DESTDIR}${udevrulesdir}/99-fuse3.rules"
+        "${sysconfdir}${udevrulesdir}/99-fuse3.rules"
 fi
 
 if [ "$initscriptdir" != "" ]; then
     install -D -m 755 "${MESON_SOURCE_ROOT}/util/init_script" \
-            "${DESTDIR}${initscriptdir}/fuse3"
+            "${sysconfdir}${initscriptdir}/fuse3"
 
     if test -x /usr/sbin/update-rc.d && test -z "${DESTDIR}"; then
         /usr/sbin/update-rc.d fuse3 start 34 S . start 41 0 6 . || /bin/true
diff --git a/util/meson.build b/util/meson.build
index aa0e734..06d4378 100644
--- a/util/meson.build
+++ b/util/meson.build
@@ -1,4 +1,4 @@
-fuseconf_path = join_paths(get_option('prefix'), get_option('sysconfdir'), 'fuse.conf')
+fuseconf_path = join_paths('/', get_option('sysconfdir'), 'fuse.conf')
 
 executable('fusermount3', ['fusermount.c', '../lib/mount_util.c'],
            include_directories: include_dirs,