summaryrefslogtreecommitdiffstats
path: root/meta/classes/package.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/package.bbclass')
-rw-r--r--meta/classes/package.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 96d7fd9b26..4685cd2bc0 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -1572,7 +1572,7 @@ python package_do_shlibs() {
1572 # /opt/abc/lib/libfoo.so.1 and contains /usr/bin/abc depending on system library libfoo.so.1 1572 # /opt/abc/lib/libfoo.so.1 and contains /usr/bin/abc depending on system library libfoo.so.1
1573 # but skipping it is still better alternative than providing own 1573 # but skipping it is still better alternative than providing own
1574 # version and then adding runtime dependency for the same system library 1574 # version and then adding runtime dependency for the same system library
1575 if private_libs and n in private_libs: 1575 if private_libs and n[0] in private_libs:
1576 bb.debug(2, '%s: Dependency %s covered by PRIVATE_LIBS' % (pkg, n[0])) 1576 bb.debug(2, '%s: Dependency %s covered by PRIVATE_LIBS' % (pkg, n[0]))
1577 continue 1577 continue
1578 if n[0] in shlib_provider.keys(): 1578 if n[0] in shlib_provider.keys():