diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2015-04-27 10:53:16 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-27 15:05:39 +0100 |
commit | 8b1794559dd7fd956716179d628e61cffdce1686 (patch) | |
tree | 627820373fcf4a837fd32e045aad5e937fe4d6fa /meta | |
parent | 5be62624a6537659f9f6229c82762da45909f902 (diff) | |
download | openembedded-core-8b1794559dd7fd956716179d628e61cffdce1686.tar.gz openembedded-core-8b1794559dd7fd956716179d628e61cffdce1686.tar.bz2 openembedded-core-8b1794559dd7fd956716179d628e61cffdce1686.zip |
devtool: include bbappends in recipe parsing
In order to get correct metadata, SRCREV for example.
Fixes [YOCTO #7648].
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oe/recipeutils.py | 6 |
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): return taskdata.get_reasons(pn) -def parse_recipe(fn, d): +def parse_recipe(fn, appends, d): """Parse an individual recipe""" import bb.cache - envdata = bb.cache.Cache.loadDataFull(fn, [], d) + envdata = bb.cache.Cache.loadDataFull(fn, appends, d) return envdata @@ -55,7 +55,7 @@ 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) + envdata = parse_recipe(fn, [], d) varfiles = {} for v in varlist: history = envdata.varhistory.variable(v) |