mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-04-10 19:15:12 +00:00
LIBMAN: added runtime libraries to the esclusion list
This commit is contained in:
parent
1fb31e0cc5
commit
314d1dc077
|
@ -6,6 +6,16 @@
|
|||
# List of user-defined libraries to exclude
|
||||
excluded_libraries=("libselinux.so.1")
|
||||
|
||||
# Add libraries from /lib/x86_64-linux-gnu/ to the excluded list
|
||||
for lib in /lib/x86_64-linux-gnu/*.so*; do
|
||||
excluded_libraries+=("$(basename "$lib")")
|
||||
done
|
||||
|
||||
# Add libraries from /lib to the excluded list
|
||||
for lib in /lib/*.so*; do
|
||||
excluded_libraries+=("$(basename "$lib")")
|
||||
done
|
||||
|
||||
# Define target directory
|
||||
target_dir="${FLATPAK_DEST}/lib"
|
||||
|
||||
|
|
Loading…
Reference in a new issue