diff options
-rw-r--r-- | bitbake/lib/bb/tinfoil.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/tinfoil.py b/bitbake/lib/bb/tinfoil.py index 60359a1a38..f48baeb334 100644 --- a/bitbake/lib/bb/tinfoil.py +++ b/bitbake/lib/bb/tinfoil.py | |||
@@ -662,7 +662,8 @@ class Tinfoil: | |||
662 | """ | 662 | """ |
663 | Run anonymous functions and expand keys | 663 | Run anonymous functions and expand keys |
664 | """ | 664 | """ |
665 | return self._reconvert_type(self.run_command('finalizeData'), 'DataStoreConnectionHandle') | 665 | with self._data_tracked_if_enabled(): |
666 | return self._reconvert_type(self.run_command('finalizeData'), 'DataStoreConnectionHandle') | ||
666 | 667 | ||
667 | def parse_recipe_file(self, fn, appends=True, appendlist=None, config_data=None): | 668 | def parse_recipe_file(self, fn, appends=True, appendlist=None, config_data=None): |
668 | """ | 669 | """ |