From a74eb461d23b7348f9ac78211d995eae05a963c1 Mon Sep 17 00:00:00 2001 From: Abderrahim Kitouni Date: Wed, 18 Mar 2020 11:47:37 +0100 Subject: mount: don't pass nonempty option fusermount3 doesn't support it, and this prevents buildstream from working in systems that have fuse 3 --- buildstream/_fuse/mount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildstream/_fuse/mount.py b/buildstream/_fuse/mount.py index 0ab1ce715..83b3ba953 100644 --- a/buildstream/_fuse/mount.py +++ b/buildstream/_fuse/mount.py @@ -184,7 +184,7 @@ class Mount(): # Run fuse in foreground in this child process, internally libfuse # will handle SIGTERM and gracefully exit it's own little main loop. # - FUSE(self.__operations, self.__mountpoint, nothreads=True, foreground=True, nonempty=True) + FUSE(self.__operations, self.__mountpoint, nothreads=True, foreground=True) # Explicit 0 exit code, if the operations crashed for some reason, the exit # code will not be 0, and we want to know about it. -- cgit v1.2.1