package.bbclass: depchains: don't -destructively- set the pkg's RRECOMMENDS.

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@823 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Chris Larson 2006-10-27 19:25:05 +00:00
parent 002f491523
commit d726bba0e0
1 changed files with 7 additions and 5 deletions

View File

@ -808,7 +808,7 @@ python package_depchains() {
def pkg_addrrecs(pkg, base, func, d):
rdepends = explode_deps(bb.data.getVar('RDEPENDS_' + base, d, 1) or bb.data.getVar('RDEPENDS', d, 1) or "")
# bb.note('rdepends for %s is %s' % (base, rdepends))
rreclist = []
rreclist = explode_deps(bb.data.getVar('RRECOMMENDS_' + pkg, d, 1) or bb.data.getVar('RRECOMMENDS', d, 1) or "")
for depend in rdepends:
split_depend = depend.split(' (')
@ -824,8 +824,9 @@ python package_depchains() {
for postfix in postfixes:
def func(list, name):
pkg = '%s%s' % (name, postfix)
if packaged(pkg, d):
list.append(pkg)
if not pkg in list:
if packaged(pkg, d):
list.append(pkg)
base = pkg[:-len(postfix)]
if pkg.endswith(postfix):
@ -835,8 +836,9 @@ python package_depchains() {
for prefix in prefixes:
def func(list, name):
pkg = '%s%s' % (prefix, name)
if packaged(pkg, d):
list.append(pkg)
if not pkg in list:
if packaged(pkg, d):
list.append(pkg)
base = pkg[len(prefix):]
if pkg.startswith(prefix):