xbps-src: verify_rundeps: ignore known shlibs from same pkg too.
This commit is contained in:
parent
7236b3549b
commit
5cb537c96b
1 changed files with 5 additions and 0 deletions
|
@ -127,6 +127,11 @@ verify_rundeps()
|
||||||
else
|
else
|
||||||
_rdep=$rdep
|
_rdep=$rdep
|
||||||
fi
|
fi
|
||||||
|
# Ignore libs by current pkg
|
||||||
|
if [ "${_rdep}" = "$pkgname" ]; then
|
||||||
|
echo " SONAME: $f <-> ${_rdep} (ignored)"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
# Add required shlib to rundeps.
|
# Add required shlib to rundeps.
|
||||||
echo " SONAME: $f <-> ${_rdep}"
|
echo " SONAME: $f <-> ${_rdep}"
|
||||||
if [ -z "$soname_list" ]; then
|
if [ -z "$soname_list" ]; then
|
||||||
|
|
Loading…
Reference in a new issue