fuse3: use /etc/fuse.conf for configuration (#59043)

We don’t want the config file to be read only and in the Nix store.
This commit is contained in:
Matthew Bauer 2019-04-07 17:00:51 -04:00 committed by Michael Weiss
parent 08e9a63d73
commit 5541559635

View file

@ -32,3 +32,13 @@
-fi
-
-
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,