LIBRARIES: possible fix for dolphin and pcsx2 libretro cores

This commit is contained in:
XargonWan 2024-08-06 20:49:23 +09:00
parent b90e87f728
commit d71cd9743b

View file

@ -533,7 +533,7 @@ modules:
missing_libs=$(find "${FLATPAK_DEST}/bin" -type f -exec ldd {} + 2>/dev/null | grep "not found" | awk '{print $1}' | sort | uniq)
# for some reason these libraries are not recognized as missing so we mantain this list
manually_imported="libpostproc.so.56 libswscale.so.6 libshaderc_shared.so.1"
manually_imported="libpostproc.so.56 libswscale.so.6 libshaderc_shared.so.1 libbz2.so.1.0 libaio.so.1"
missing_libs="$missing_libs $manually_imported"