summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbderrahim Kitouni <akitouni@gnome.org>2020-03-18 11:47:37 +0100
committerAbderrahim Kitouni <a.kitouni@gmail.com>2020-03-28 16:57:02 +0000
commitd8749776b3219cdc0a653da65ac87a5425fad35a (patch)
tree299be0288183f1dc09fdb0c82cc9ad862d54803d
parent0b11fcbf3026aaef36a5d1241064e8bb545e0ab3 (diff)
downloadbuildstream-abderrahim/fuse3.tar.gz
mount: don't pass nonempty optionabderrahim/fuse3
fusermount3 doesn't support it, and this prevents buildstream from working in systems that have fuse 3
-rw-r--r--src/buildstream/_fuse/mount.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/_fuse/mount.py b/src/buildstream/_fuse/mount.py
index 92ca63179..8cd968f0d 100644
--- a/src/buildstream/_fuse/mount.py
+++ b/src/buildstream/_fuse/mount.py
@@ -205,7 +205,7 @@ class Mount():
# will handle SIGTERM and gracefully exit its own little main loop.
#
try:
- FUSE(self.__operations, self.__mountpoint, nothreads=True, foreground=True, nonempty=True,
+ FUSE(self.__operations, self.__mountpoint, nothreads=True, foreground=True,
**self._fuse_mount_options)
except RuntimeError as exc:
# FUSE will throw a RuntimeError with the exit code of libfuse as args[0]