archrelease: copy trunk to extra-x86_64
[arch-packages.git] / flatpak-builder / repos / extra-x86_64 / fusermount3.diff
blob42de4199bd4497db828b7a6868fc633ebb36a6c1
1 diff --git i/src/builder-context.c w/src/builder-context.c
2 index ea4d7fc9..aa094479 100644
3 --- i/src/builder-context.c
4 +++ w/src/builder-context.c
5 @@ -792,7 +792,7 @@ static char *rofiles_unmount_path = NULL;
6 static void
7 rofiles_umount_handler (int signum)
9 - char *argv[] = { "fusermount", "-uz", NULL,
10 + char *argv[] = { "fusermount3", "-uz", NULL,
11 NULL };
13 argv[2] = rofiles_unmount_path;
14 @@ -929,7 +929,7 @@ gboolean
15 builder_context_disable_rofiles (BuilderContext *self,
16 GError **error)
18 - char *argv[] = { "fusermount", "-u", NULL,
19 + char *argv[] = { "fusermount3", "-u", NULL,
20 NULL };
22 if (!self->use_rofiles)
23 diff --git i/tests/libtest.sh w/tests/libtest.sh
24 index 0384c499..07ef5f7c 100644
25 --- i/tests/libtest.sh
26 +++ w/tests/libtest.sh
27 @@ -296,7 +296,7 @@ run_sh () {
28 # fuse support is needed (and the kernel module needs to be loaded) for several
29 # flatpak-builder tests
30 skip_without_fuse () {
31 - if [ ! -w /dev/fuse ] || ! command -v fusermount >/dev/null; then
32 + if [ ! -w /dev/fuse ] || ! command -v fusermount3 >/dev/null; then
33 echo "1..0 # SKIP this test requires fuse support"
34 exit 0