summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-06-18 11:36:18 +0000
committerRichard Purdie <richard@openedhand.com>2007-06-18 11:36:18 +0000
commitcee4b2a05a506817c65267ff9786c2e9c980306a (patch)
treea8a6040e22cd1b7a597883e48cc267b71c78e4db /meta/classes
parent682d2154f6d944e8fdcc554dc515a149ef863f6d (diff)
downloadpoky-cee4b2a05a506817c65267ff9786c2e9c980306a.tar.gz
package.bbclass: Disable locale RDEPENDS since it currently does nothing due to broken depends, breaks meta-toolchain and is incompatible with debian
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1965 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes')
-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 () {