diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-05 14:23:11 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-09 16:58:17 +0100 |
commit | 7cd54693363882854cd026ebe071e9f2e03d364e (patch) | |
tree | 9677125393fc076fbfe735e9b59a982ccb857634 /meta/classes/utils.bbclass | |
parent | 282cbf7002112f6b58ca1ee070c0b1285b838db7 (diff) | |
download | openembedded-core-contrib-7cd54693363882854cd026ebe071e9f2e03d364e.tar.gz |
utils.bbclass: add helper function to add all multilib variants of a specific package
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 <msm@freescale.com>
Diffstat (limited to 'meta/classes/utils.bbclass')
-rw-r--r-- | 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 f8b09b423ca..ccf78fcfee9 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 = [] |