From 9ff89df81616ac5827e6c157c2317930d260ce17 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Wed, 15 Jan 2025 10:23:42 +0900 Subject: [PATCH] LIBMAN: minor fixes --- automation_tools/libman.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/automation_tools/libman.sh b/automation_tools/libman.sh index d7942dea..b581afe4 100644 --- a/automation_tools/libman.sh +++ b/automation_tools/libman.sh @@ -4,6 +4,7 @@ # List of user-defined libraries to exclude +excluded_libraries=() # General libraries`` excluded_libraries=("libselinux.so.1") @@ -22,7 +23,7 @@ for lib in /lib/*.so*; do excluded_libraries+=("$(basename "$lib")") done -# Add libraries from /lib to the excluded list +# Add libraries from /lib64 to the excluded list for lib in /lib64/*.so*; do excluded_libraries+=("$(basename "$lib")") done