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.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/lib/oe/recipeutils.py b/meta/lib/oe/recipeutils.py
index cd742130de..d4fa72651c 100644
--- a/meta/lib/oe/recipeutils.py
+++ b/meta/lib/oe/recipeutils.py
@@ -79,10 +79,9 @@ def get_var_files(fn, varlist, d):
79 """Find the file in which each of a list of variables is set. 79 """Find the file in which each of a list of variables is set.
80 Note: requires variable history to be enabled when parsing. 80 Note: requires variable history to be enabled when parsing.
81 """ 81 """
82 envdata = parse_recipe(fn, [], d)
83 varfiles = {} 82 varfiles = {}
84 for v in varlist: 83 for v in varlist:
85 history = envdata.varhistory.variable(v) 84 history = d.varhistory.variable(v)
86 files = [] 85 files = []
87 for event in history: 86 for event in history:
88 if 'file' in event and not 'flag' in event: 87 if 'file' in event and not 'flag' in event: