From 099ec8bcbcc0c453e0d5546d976abc0f31655fef Mon Sep 17 00:00:00 2001 From: Florian Uhlig <f.uhlig@gsi.de> Date: Sat, 4 Dec 2021 12:29:55 +0100 Subject: [PATCH] Fix script With the latest change not all libraries were found any longer such that not all libraries were tested. The outcome of the test was such not reliable. --- scripts/checklibs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/checklibs.sh b/scripts/checklibs.sh index 100e0ddd3e..119ead0a48 100755 --- a/scripts/checklibs.sh +++ b/scripts/checklibs.sh @@ -13,7 +13,7 @@ LIBDIR=${2:-../lib} # find all libs # libraries are real files with the extensions .so and for macosx .dylib -all_libs=$(find $LIBDIR -type f | grep -e \.dylib$ -e \.so$) +all_libs=$(find $LIBDIR -type f -o -type l | grep -e \.dylib$ -e \.so$) tmpfile=$(mktemp) -- GitLab