diff options
author | Constantin Musca <constantinx.musca@intel.com> | 2012-12-21 12:38:03 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-07 11:09:37 +0000 |
commit | 94516ced8d3685b34978b6e080e78906228040c3 (patch) | |
tree | d8e718dbdeda30b872d717de22b0f92a448f0c45 | |
parent | 785512a306ad1b9bf921d1b153e584c0e9e348d0 (diff) | |
download | poky-94516ced8d3685b34978b6e080e78906228040c3.tar.gz |
package.bbclass: don't prepend MLPREFIX to LOCALEBASEPN
- all the recipes that overwrite LOCALEBASEPN must consider
also the MLPREFIX
- if the LOCALEBASEPN variable is not overwritten then it will
have the correct prefix (LOCALEBASEPN ??= "${PN}")
(From OE-Core rev: 855d64a3091c5358e2e1a7f4247929515b068708)
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/package.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 1ac65510c7..34bbc46d2a 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -438,7 +438,7 @@ python package_do_split_locales() { | |||
438 | return | 438 | return |
439 | 439 | ||
440 | dvar = d.getVar('PKGD', True) | 440 | dvar = d.getVar('PKGD', True) |
441 | pn = "%s%s" % (d.getVar('MLPREFIX', True) or "", d.getVar('LOCALEBASEPN', True)) | 441 | pn = d.getVar('LOCALEBASEPN', True) |
442 | 442 | ||
443 | if pn + '-locale' in packages: | 443 | if pn + '-locale' in packages: |
444 | packages.remove(pn + '-locale') | 444 | packages.remove(pn + '-locale') |