summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/recipeutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/recipeutils.py')
-rw-r--r--meta/lib/oe/recipeutils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oe/recipeutils.py b/meta/lib/oe/recipeutils.py
index 159a103719..09bd7fdb46 100644
--- a/meta/lib/oe/recipeutils.py
+++ b/meta/lib/oe/recipeutils.py
@@ -44,10 +44,10 @@ def get_unavailable_reasons(cooker, pn):
44 return taskdata.get_reasons(pn) 44 return taskdata.get_reasons(pn)
45 45
46 46
47def parse_recipe(fn, d): 47def parse_recipe(fn, appends, d):
48 """Parse an individual recipe""" 48 """Parse an individual recipe"""
49 import bb.cache 49 import bb.cache
50 envdata = bb.cache.Cache.loadDataFull(fn, [], d) 50 envdata = bb.cache.Cache.loadDataFull(fn, appends, d)
51 return envdata 51 return envdata
52 52
53 53
@@ -55,7 +55,7 @@ def get_var_files(fn, varlist, d):
55 """Find the file in which each of a list of variables is set. 55 """Find the file in which each of a list of variables is set.
56 Note: requires variable history to be enabled when parsing. 56 Note: requires variable history to be enabled when parsing.
57 """ 57 """
58 envdata = parse_recipe(fn, d) 58 envdata = parse_recipe(fn, [], d)
59 varfiles = {} 59 varfiles = {}
60 for v in varlist: 60 for v in varlist:
61 history = envdata.varhistory.variable(v) 61 history = envdata.varhistory.variable(v)