diff options
author | Constantin Musca <constantinx.musca@intel.com> | 2012-12-21 12:38:03 +0200 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-01-04 22:01:21 -0800 |
commit | 855d64a3091c5358e2e1a7f4247929515b068708 (patch) | |
tree | 7f29e6c2348ff004081a097afbe3bc4d0cb39cdb /meta/classes/package.bbclass | |
parent | 1dbb0bc048ceaf4cd2879362ae4a0f1398809349 (diff) | |
download | openembedded-core-855d64a3091c5358e2e1a7f4247929515b068708.tar.gz openembedded-core-855d64a3091c5358e2e1a7f4247929515b068708.tar.bz2 openembedded-core-855d64a3091c5358e2e1a7f4247929515b068708.zip |
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}")
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/classes/package.bbclass')
-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() { return dvar = d.getVar('PKGD', True) - pn = "%s%s" % (d.getVar('MLPREFIX', True) or "", d.getVar('LOCALEBASEPN', True)) + pn = d.getVar('LOCALEBASEPN', True) if pn + '-locale' in packages: packages.remove(pn + '-locale') |