diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-17 03:00:56 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-17 03:00:56 +0000 |
commit | 4527dbd7b73717e8524756685f66c8d2804d8bdb (patch) | |
tree | 611a8222fe2e09871326d4b77200c5b97a0d0abd | |
parent | 39063d1e2f65f110505ff215eae41df02f5c5260 (diff) |
For now, put the greedy locale bits into RDEPENDS rather than RRECOMMENDS.
BKrev: 419abee82BKIkNdAC7E-HRT8FanPFQ
-rw-r--r-- | classes/package.oeclass | 6 |
1 files changed, 3 insertions, 3 deletions
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 () { |