summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-11-17 03:00:56 +0000
committerChris Larson <clarson@kergoth.com>2004-11-17 03:00:56 +0000
commit4527dbd7b73717e8524756685f66c8d2804d8bdb (patch)
tree611a8222fe2e09871326d4b77200c5b97a0d0abd /classes
parent39063d1e2f65f110505ff215eae41df02f5c5260 (diff)
For now, put the greedy locale bits into RDEPENDS rather than RRECOMMENDS.
BKrev: 419abee82BKIkNdAC7E-HRT8FanPFQ
Diffstat (limited to 'classes')
-rw-r--r--classes/package.oeclass6
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 () {