[oe-commits] [openembedded-core] 12/25: utils: add -src to system package name blacklist

git at git.openembedded.org git at git.openembedded.org
Thu Feb 14 22:06:33 UTC 2019


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

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

commit 49d982d0186bdcf5061e473c4d4af80efea80bc5
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Wed Feb 13 13:25:51 2019 +0000

    utils: add -src to system package name blacklist
    
    oe.utils.packages_filter_out_system() returns PACKAGES after removing "system"
    packages but it doesn't handle ${PN}-src as generated by
    PACKAGE_DEBUG_SPLIT_STYLE=debug-with-srcpkg.
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oe/utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py
index 7b574ff..0c1d48a 100644
--- a/meta/lib/oe/utils.py
+++ b/meta/lib/oe/utils.py
@@ -214,7 +214,7 @@ def packages_filter_out_system(d):
     PN-dbg PN-doc PN-locale-eb-gb removed.
     """
     pn = d.getVar('PN')
-    blacklist = [pn + suffix for suffix in ('', '-dbg', '-dev', '-doc', '-locale', '-staticdev')]
+    blacklist = [pn + suffix for suffix in ('', '-dbg', '-dev', '-doc', '-locale', '-staticdev', '-src')]
     localepkg = pn + "-locale-"
     pkgs = []
 

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


More information about the Openembedded-commits mailing list