mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
filesystem-cleanup: Ignore boost
This package does not behave according to standard distribution rules and our script deletes all libraries Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
@@ -53,6 +53,13 @@ main() {
|
||||
# Find all files called libsomething.so.N
|
||||
local lib
|
||||
for lib in $(find "${path}" -maxdepth 1 -type l -name "lib*.so.*" | sort); do
|
||||
# Ignore some libraries
|
||||
case "${lib}" in
|
||||
*/libboost*)
|
||||
continue
|
||||
;;
|
||||
esac
|
||||
|
||||
# Read the name of the linked library
|
||||
local link="$(readlink -m "${lib}")"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user