summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/package.bbclass12
1 files changed, 9 insertions, 3 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 0a0daffd98..a38b4ed944 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -311,9 +311,15 @@ python package_do_split_locales() {
311 311
312 bb.data.setVar('PACKAGES', ' '.join(packages), d) 312 bb.data.setVar('PACKAGES', ' '.join(packages), d)
313 313
314 rdep = (bb.data.getVar('RDEPENDS_%s' % mainpkg, d, 1) or bb.data.getVar('RDEPENDS', d, 1) or "").split() 314 # Disabled by RP 18/06/07
315 rdep.append('%s-locale*' % pn) 315 # Wildcards aren't supported in debian
316 bb.data.setVar('RDEPENDS_%s' % mainpkg, ' '.join(rdep), d) 316 # They break with ipkg since glibc-locale* will mean that
317 # glibc-localedata-translit* won't install as a dependency
318 # for some other package which breaks meta-toolchain
319 # Probably breaks since virtual-locale- isn't provided anywhere
320 #rdep = (bb.data.getVar('RDEPENDS_%s' % mainpkg, d, 1) or bb.data.getVar('RDEPENDS', d, 1) or "").split()
321 #rdep.append('%s-locale*' % pn)
322 #bb.data.setVar('RDEPENDS_%s' % mainpkg, ' '.join(rdep), d)
317} 323}
318 324
319python populate_packages () { 325python populate_packages () {