From patchwork Mon Jul 9 15:47:40 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [CONSOLIDATED, PULL, 26/41] utils.bbclass: add helper function to add all multilib variants of a specific package Date: Mon, 09 Jul 2012 15:47:40 -0000 From: Saul Wold X-Patchwork-Id: 31505 Message-Id: To: openembedded-core@lists.openembedded.org From: Richard Purdie This is useful for the scenario where we want to add 'gcc' to the root file system for all multilib variants Signed-off-by: Matthew McClintock --- meta/classes/utils.bbclass | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index f8b09b4..ccf78fc 100644 --- a/meta/classes/utils.bbclass +++ b/meta/classes/utils.bbclass @@ -325,6 +325,15 @@ def extend_variants(d, var, extend, delim=':'): variants.append(eext[1]) return " ".join(variants) +def multilib_pkg_extend(d, pkg): + variants = (d.getVar("MULTILIB_VARIANTS", True) or "").split() + if not variants: + return pkg + pkgs = pkg + for v in variants: + pkgs = pkgs + " " + v + "-" + pkg + return pkgs + def all_multilib_tune_values(d, var, unique = True, need_split = True, delim = ' '): """Return a string of all ${var} in all multilib tune configuration""" values = []