LIBMAN: excluding /lib64

This commit is contained in:
XargonWan 2025-01-09 17:39:28 +09:00
parent bffc4161df
commit b21f00f560

View file

@ -16,6 +16,11 @@ for lib in /lib/*.so*; do
excluded_libraries+=("$(basename "$lib")")
done
# Add libraries from /lib to the excluded list
for lib in /lib64/*.so*; do
excluded_libraries+=("$(basename "$lib")")
done
# Define target directory
target_dir="${FLATPAK_DEST}/lib"