[oe-commits] [openembedded-core] 01/13: package.bbclass: fetch PRIVATE_LIBS twice as we iterate twice

git at git.openembedded.org git at git.openembedded.org
Thu Mar 1 22:19:07 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 8c90c0081c38b33c99655f806cbe668600c170cc
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Wed Feb 28 23:06:30 2018 +0000

    package.bbclass: fetch PRIVATE_LIBS twice as we iterate twice
    
    The shlibs detection/handling iterates the package list twice, but PRIVATE_LIBS
    is only fetched in the first loop which means the second loop only considers the
    value set.
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/package.bbclass | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index e7e93a0..317c775 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -1773,6 +1773,9 @@ python package_do_shlibs() {
     for pkg in packages.split():
         bb.debug(2, "calculating shlib requirements for %s" % pkg)
 
+        private_libs = d.getVar('PRIVATE_LIBS_' + pkg) or d.getVar('PRIVATE_LIBS') or ""
+        private_libs = private_libs.split()
+
         deps = list()
         for n in needed[pkg]:
             # if n is in private libraries, don't try to search provider for it

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list