diff options
-rw-r--r-- | install.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install.cpp b/install.cpp index 48da7f5..5631594 100644 --- a/install.cpp +++ b/install.cpp @@ -300,8 +300,10 @@ really_install_package(const char *path, bool* wipe_cache, bool needs_mount) if (path && needs_mount) { if (path[0] == '@') { ensure_path_mounted(path+1); + remount_no_selinux(path+1); } else { ensure_path_mounted(path); + remount_no_selinux(path); } } |