For now, put the greedy locale bits into RDEPENDS rather than RRECOMMENDS.
authorChris Larson <clarson@kergoth.com>
Wed, 17 Nov 2004 03:00:56 +0000 (03:00 +0000)
committerChris Larson <clarson@kergoth.com>
Wed, 17 Nov 2004 03:00:56 +0000 (03:00 +0000)
BKrev: 419abee82BKIkNdAC7E-HRT8FanPFQ

classes/package.oeclass

index cb87267..c2e5a6b 100644 (file)
@@ -573,9 +573,9 @@ python package_do_split_locales() {
 
        oe.data.setVar('PACKAGES', ' '.join(packages), d)
 
-       rrec = (oe.data.getVar('RRECOMMENDS_%s' % mainpkg, d, 1) or oe.data.getVar('RRECOMMENDS', d, 1) or "").split()
-       rrec.append('%s-locale*' % pn)
-       oe.data.setVar('RRECOMMENDS_%s' % mainpkg, ' '.join(rrec), d)
+       rdep = (oe.data.getVar('RDEPENDS_%s' % mainpkg, d, 1) or oe.data.getVar('RDEPENDS', d, 1) or "").split()
+       rdep.append('%s-locale*' % pn)
+       oe.data.setVar('RDEPENDS_%s' % mainpkg, ' '.join(rdep), d)
 }
 
 python package_do_package () {