aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/fs_lib.c
diff options
context:
space:
mode:
authorLibravatar Reiner Herrmann <reiner@reiner-h.de>2020-11-12 23:11:34 +0100
committerLibravatar Reiner Herrmann <reiner@reiner-h.de>2020-11-12 23:11:34 +0100
commit45304621a6c600d8e30e98bfbef05149caaf56c5 (patch)
tree6365397df8fd4eb9367f94337f97915d4158ed44 /src/firejail/fs_lib.c
parentminetest.profile: whitelist /usr/share/games/minetest (#3740) (diff)
downloadfirejail-45304621a6c600d8e30e98bfbef05149caaf56c5.tar.gz
firejail-45304621a6c600d8e30e98bfbef05149caaf56c5.tar.zst
firejail-45304621a6c600d8e30e98bfbef05149caaf56c5.zip
install libraries needed by fcopy when using private-lib
Fixes #3741
Diffstat (limited to 'src/firejail/fs_lib.c')
-rw-r--r--src/firejail/fs_lib.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/firejail/fs_lib.c b/src/firejail/fs_lib.c
index 64444bba2..5cfd33b42 100644
--- a/src/firejail/fs_lib.c
+++ b/src/firejail/fs_lib.c
@@ -378,6 +378,9 @@ void fs_private_lib(void) {
378 // bring in firejail executable libraries in case we are redirected here by a firejail symlink from /usr/local/bin/firejail 378 // bring in firejail executable libraries in case we are redirected here by a firejail symlink from /usr/local/bin/firejail
379 fslib_install_list("/usr/bin/firejail,firejail"); // todo: use the installed path for the executable 379 fslib_install_list("/usr/bin/firejail,firejail"); // todo: use the installed path for the executable
380 380
381 // install libraries needed by fcopy
382 fslib_install_list(PATH_FCOPY);
383
381 fmessage("Installed %d %s and %d %s\n", lib_cnt, (lib_cnt == 1)? "library": "libraries", 384 fmessage("Installed %d %s and %d %s\n", lib_cnt, (lib_cnt == 1)? "library": "libraries",
382 dir_cnt, (dir_cnt == 1)? "directory": "directories"); 385 dir_cnt, (dir_cnt == 1)? "directory": "directories");
383 386