From: Chris Larson Date: Wed, 24 Nov 2010 03:00:42 +0000 (-0700) Subject: cache: fix rrecs_pkg X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=720484ada07153aa22fec050fc76f623675258d0;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git cache: fix rrecs_pkg Signed-off-by: Chris Larson --- diff --git a/lib/bb/cache.py b/lib/bb/cache.py index c2d17cbf72c..9c9786ebde3 100644 --- a/lib/bb/cache.py +++ b/lib/bb/cache.py @@ -43,7 +43,7 @@ except ImportError: logger.info("Importing cPickle failed. " "Falling back to a very slow implementation.") -__cache_version__ = "131" +__cache_version__ = "132" class Cache(object): @@ -431,7 +431,7 @@ class Cache(object): for package in packages + [pn]: rdeps_pkg = bb.utils.explode_deps(self.getVar('RDEPENDS_%s' % package, file_name, True) or "") cacheData.rundeps[file_name][package] = rdepends + rdeps_pkg - rrecs_pkg = bb.utils.explode_deps(self.getVar('RDEPENDS_%s' % package, file_name, True) or "") + rrecs_pkg = bb.utils.explode_deps(self.getVar('RRECOMMENDS_%s' % package, file_name, True) or "") cacheData.runrecs[file_name][package] = rrecommends + rrecs_pkg # Collect files we may need for possible world-dep