From 5cb537c96be76805b87a756858998cb83558fd7e Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 15 Nov 2011 10:59:01 +0100 Subject: [PATCH] xbps-src: verify_rundeps: ignore known shlibs from same pkg too. --- xbps-src/shutils/verify_rundeps.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/xbps-src/shutils/verify_rundeps.sh b/xbps-src/shutils/verify_rundeps.sh index 1565dcd7ab..08db60c23e 100644 --- a/xbps-src/shutils/verify_rundeps.sh +++ b/xbps-src/shutils/verify_rundeps.sh @@ -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