summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-11 16:37:27 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-17 08:52:28 +0000
commit1a45c29ff13f6e78b9428336f813d0c3e0fd980a (patch)
treea723108d4783559eb983e94854fc4a0fbd042a94 /bitbake/lib/bb/cooker.py
parent878de40a501089048cffdc867b2ae1ad8a2ec9e5 (diff)
downloadpoky-1a45c29ff13f6e78b9428336f813d0c3e0fd980a.tar.gz
bitbake: build/siggen: Rework stamps functions
The current method of passing either a task's datastore, or dataCaches and a filename into the stamp functions is rather horrible. Due to the different contexts, fixing this is hard but we do control the bitbake side of the API usage so we can migrate those to use other functions and then only support a datastore in the public bb.build API which is only called from task context in OE-Core. (Bitbake rev: c79ecec580e4c2a141ae483ec0f6448f70593dcf) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index ac7ac20c04..d96afcc669 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1453,7 +1453,7 @@ class BBCooker:
1453 # Invalidate task for target if force mode active 1453 # Invalidate task for target if force mode active
1454 if self.configuration.force: 1454 if self.configuration.force:
1455 logger.verbose("Invalidate task %s, %s", task, fn) 1455 logger.verbose("Invalidate task %s, %s", task, fn)
1456 bb.parse.siggen.invalidate_task(task, self.recipecaches[mc], fn) 1456 bb.parse.siggen.invalidate_task(task, fn)
1457 1457
1458 # Setup taskdata structure 1458 # Setup taskdata structure
1459 taskdata = {} 1459 taskdata = {}