diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oe/recipeutils.py | 3 |
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): """Find the file in which each of a list of variables is set. Note: requires variable history to be enabled when parsing. """ - envdata = parse_recipe(fn, [], d) varfiles = {} for v in varlist: - history = envdata.varhistory.variable(v) + history = d.varhistory.variable(v) files = [] for event in history: if 'file' in event and not 'flag' in event: |