diff options
author | Abderrahim Kitouni <akitouni@gnome.org> | 2020-03-18 11:47:37 +0100 |
---|---|---|
committer | Abderrahim Kitouni <a.kitouni@gmail.com> | 2020-03-28 16:57:02 +0000 |
commit | d8749776b3219cdc0a653da65ac87a5425fad35a (patch) | |
tree | 299be0288183f1dc09fdb0c82cc9ad862d54803d /src | |
parent | 0b11fcbf3026aaef36a5d1241064e8bb545e0ab3 (diff) | |
download | buildstream-d8749776b3219cdc0a653da65ac87a5425fad35a.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
Diffstat (limited to 'src')
-rw-r--r-- | src/buildstream/_fuse/mount.py | 2 |
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] |