From: Chris Larson Date: Wed, 17 Nov 2004 03:00:56 +0000 (+0000) Subject: For now, put the greedy locale bits into RDEPENDS rather than RRECOMMENDS. X-Git-Tag: Release-2010-05/1~16184 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4527dbd7b73717e8524756685f66c8d2804d8bdb;p=openembedded.git For now, put the greedy locale bits into RDEPENDS rather than RRECOMMENDS. BKrev: 419abee82BKIkNdAC7E-HRT8FanPFQ --- diff --git a/classes/package.oeclass b/classes/package.oeclass index cb87267e9e..c2e5a6b2b0 100644 --- a/classes/package.oeclass +++ b/classes/package.oeclass @@ -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 () {