summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/build.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-11-11 14:23:54 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-11-14 16:22:00 +0000
commitd8e9ee8fd53b7620e72b2dfebb2e8d464b737dbb (patch)
treed815af2cb816524186a52c3f031dca5374e733d0 /bitbake/lib/bb/build.py
parentde98b12ee17717bf4c18a02833e7a5260c7cb75d (diff)
downloadpoky-d8e9ee8fd53b7620e72b2dfebb2e8d464b737dbb.tar.gz
bitbake: data/data_smart/build: Clean up datastore finalize/update_data references
We dropped the update_data calls a while ago. Clean up the code to match the reality and drop the remaining no-op pieces. Update the comments to reflect the slowest operations and let the cookie monster's spirit live on! (Bitbake rev: 584989ed2b5af4e8799571dece0cf94f995ef14e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/build.py')
-rw-r--r--bitbake/lib/bb/build.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index b8c1099ef5..db706d0a3a 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -572,7 +572,6 @@ def _task_data(fn, task, d):
572 localdata.setVar('BB_FILENAME', fn) 572 localdata.setVar('BB_FILENAME', fn)
573 localdata.setVar('OVERRIDES', 'task-%s:%s' % 573 localdata.setVar('OVERRIDES', 'task-%s:%s' %
574 (task[3:].replace('_', '-'), d.getVar('OVERRIDES', False))) 574 (task[3:].replace('_', '-'), d.getVar('OVERRIDES', False)))
575 localdata.finalize()
576 bb.data.expandKeys(localdata) 575 bb.data.expandKeys(localdata)
577 return localdata 576 return localdata
578 577