From patchwork Tue Dec 11 15:29:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [4/4] package.bbclass: prepend MLPREFIX to LOCALEBASEPN Date: Tue, 11 Dec 2012 15:29:42 -0000 From: Constantin Musca X-Patchwork-Id: 40761 Message-Id: <76c157858049dab2c0ad550f1d5d197bb95abe17.1355236839.git.constantinx.musca@intel.com> To: openembedded-core@lists.openembedded.org Cc: Constantin Musca We need to prepend MLPREFIX to LOCALEBASEPN in order to fully enable multilib [YOCTO #3440] Signed-off-by: Constantin Musca --- meta/classes/package.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 993ce98..3f7e7bf 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -432,7 +432,7 @@ python package_do_split_locales() { return dvar = d.getVar('PKGD', True) - pn = d.getVar('LOCALEBASEPN', True) + pn = "%s%s" % (d.getVar('MLPREFIX', True) or "", d.getVar('LOCALEBASEPN', True)) if pn + '-locale' in packages: packages.remove(pn + '-locale')