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