summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/siggen.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-10 11:42:45 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-11 23:21:27 +0000
commitf329142a31f8207240ad93e5c00e9b6bf8dc9745 (patch)
tree8ab147827cbd0ccc99dc23fc2b7f63d09b6fe31e /bitbake/lib/bb/siggen.py
parenta40875b7271cc1737cc42b14e185ce4a63662036 (diff)
downloadpoky-f329142a31f8207240ad93e5c00e9b6bf8dc9745.tar.gz
bitbake: build/siggen/runqueue: Drop do_setscene references
do_setscene was from a different era before our modern setscene per task code. It hasn't been used for years so remove some old obsolete references to it. (Bitbake rev: ef72282298f7c4db74383c23bb0251dd06d3c6d3) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/siggen.py')
-rw-r--r--bitbake/lib/bb/siggen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index be56b3a31c..cdf7d03a34 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -429,7 +429,7 @@ class SignatureGeneratorBasicHash(SignatureGeneratorBasic):
429 return self.basehash[tid] 429 return self.basehash[tid]
430 430
431 def stampfile(self, stampbase, fn, taskname, extrainfo, clean=False): 431 def stampfile(self, stampbase, fn, taskname, extrainfo, clean=False):
432 if taskname != "do_setscene" and taskname.endswith("_setscene"): 432 if taskname.endswith("_setscene"):
433 tid = fn + ":" + taskname[:-9] 433 tid = fn + ":" + taskname[:-9]
434 else: 434 else:
435 tid = fn + ":" + taskname 435 tid = fn + ":" + taskname