Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 1/2] utils: add -src to system package name blacklist
@ 2019-02-13 13:25 Ross Burton
  2019-02-13 13:25 ` [PATCH 2/2] gstreamer: improve metadata dependencies Ross Burton
  0 siblings, 1 reply; 2+ messages in thread
From: Ross Burton @ 2019-02-13 13:25 UTC (permalink / raw)
  To: openembedded-core

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@intel.com>
---
 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 7b574ffd30d..0c1d48a209e 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 = []
 
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-02-13 13:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-13 13:25 [PATCH 1/2] utils: add -src to system package name blacklist Ross Burton
2019-02-13 13:25 ` [PATCH 2/2] gstreamer: improve metadata dependencies Ross Burton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox