summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbderrahim Kitouni <akitouni@gnome.org>2020-03-18 11:47:37 +0100
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2020-04-01 12:01:24 +0000
commita74eb461d23b7348f9ac78211d995eae05a963c1 (patch)
treeb3cb68c40876330b89a2436447511ff3abfd1bfc
parent213656a7f22d71699d65fd75e495199791341f03 (diff)
downloadbuildstream-abderrahim/fuse3-1.tar.gz
mount: don't pass nonempty optionabderrahim/fuse3-1
fusermount3 doesn't support it, and this prevents buildstream from working in systems that have fuse 3
-rw-r--r--buildstream/_fuse/mount.py2
1 files changed, 1 insertions, 1 deletions
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.