From c815923aed1f69043c1cc8b87dda40a2e3329d45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= Date: Mon, 29 Aug 2016 21:08:55 +0000 Subject: [PATCH] rrs/tools/common.py: When load a recipe use tinfoil cache MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- rrs/tools/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rrs/tools/common.py b/rrs/tools/common.py index 490d677..d61b81f 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: