mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00
bitbake: tinfoil: Track data during finalizeData
finalizeData changes the value of variables, so, it needs to have data tracking enabled to get a full and accurate variable value history. Fixes [YOCTO #15652] (Bitbake rev: 228979b506f7d0e24c643440bcc7becf684da283) Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
e4761312f7
commit
159a49f35a
|
@ -662,7 +662,8 @@ class Tinfoil:
|
||||||
"""
|
"""
|
||||||
Run anonymous functions and expand keys
|
Run anonymous functions and expand keys
|
||||||
"""
|
"""
|
||||||
return self._reconvert_type(self.run_command('finalizeData'), 'DataStoreConnectionHandle')
|
with self._data_tracked_if_enabled():
|
||||||
|
return self._reconvert_type(self.run_command('finalizeData'), 'DataStoreConnectionHandle')
|
||||||
|
|
||||||
def parse_recipe_file(self, fn, appends=True, appendlist=None, config_data=None):
|
def parse_recipe_file(self, fn, appends=True, appendlist=None, config_data=None):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user