From 3358a84fd597b70a226ced1e1313ce428e93e4b0 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sat, 27 Feb 2021 15:27:42 +0000 Subject: [PATCH] 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 --- src/scripts/filesystem-cleanup | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/scripts/filesystem-cleanup b/src/scripts/filesystem-cleanup index 932e7dc6c..e0eb0d361 100644 --- a/src/scripts/filesystem-cleanup +++ b/src/scripts/filesystem-cleanup @@ -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}")"