mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-04-10 19:15:12 +00:00
LIBMAN: excluding /lib64
This commit is contained in:
parent
bffc4161df
commit
b21f00f560
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue