xbps-src: verify_rundeps: ignore known shlibs from same pkg too.

This commit is contained in:
Juan RP 2011-11-15 10:59:01 +01:00
parent 7236b3549b
commit 5cb537c96b

View file

@ -127,6 +127,11 @@ verify_rundeps()
else
_rdep=$rdep
fi
# Ignore libs by current pkg
if [ "${_rdep}" = "$pkgname" ]; then
echo " SONAME: $f <-> ${_rdep} (ignored)"
continue
fi
# Add required shlib to rundeps.
echo " SONAME: $f <-> ${_rdep}"
if [ -z "$soname_list" ]; then