checkapk: but actually skip symlinks

boolean logic gets confusing..
This commit is contained in:
psykose 2023-06-26 02:25:08 +00:00
parent d51cf9c2bb
commit 256a249feb
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ for i in $pkgname $subpackages; do
esac
# skip symlinks
if [ -L "$path"/"$sofile" ]; then
if ! [ -L "$path"/"$sofile" ]; then
echo "$diff_sofile: " "$(objdump -p "$path"/"$sofile" | grep SONAME)"
fi
done