aboutsummaryrefslogtreecommitdiffstats
path: root/rrs/tools/common.py
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2016-08-29 21:08:55 +0000
committerPaul Eggleton <paul.eggleton@linux.intel.com>2018-05-04 23:57:52 +1200
commit818288f17c4017b0c130ae94cf7b800f7d3e2c37 (patch)
tree6f84fbfa1b608a83589ef87cf853a19fe843b5fb /rrs/tools/common.py
parent2c6610ce5d18330712603c225af83e93cde8eea4 (diff)
downloadopenembedded-core-contrib-818288f17c4017b0c130ae94cf7b800f7d3e2c37.tar.gz
rrs/tools/common.py: When load a recipe use tinfoil cache
Due to multi-configuration builds in bitbake now is needed to use a tinfoil cache instance instead of call directly in bb.cache. Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Diffstat (limited to 'rrs/tools/common.py')
-rw-r--r--rrs/tools/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rrs/tools/common.py b/rrs/tools/common.py
index 490d677595..d61b81fb32 100644
--- a/rrs/tools/common.py
+++ b/rrs/tools/common.py
@@ -119,7 +119,7 @@ def load_recipes(layerbranch, bitbakepath, fetchdir, settings, logger,
recipes = []
for rp in recipe_files:
try:
- data = bb.cache.Cache.loadDataFull(rp, [], d)
+ data = tinfoil.cache.loadDataFull(rp, [])
try:
pv = data.getVar('PV', True)
except FetchError: