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}")"