1
0
Fork 0

Mount /etc/alternatives inside bubblewrap

This is now required by ffmpeg
This commit is contained in:
jvoisin 2020-11-13 17:18:20 +01:00
parent 77dde8a049
commit b3def8b5de
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ def _get_bwrap_args(tempdir: str,
# XXX: use --ro-bind-try once all supported platforms
# have a bubblewrap recent enough to support it.
ro_bind_dirs = ['/usr', '/lib', '/lib64', '/bin', '/sbin', cwd]
ro_bind_dirs = ['/usr', '/lib', '/lib64', '/bin', '/sbin', '/etc/alternatives', cwd]
for bind_dir in ro_bind_dirs:
if os.path.isdir(bind_dir): # pragma: no cover
ro_bind_args.extend(['--ro-bind', bind_dir, bind_dir])