summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.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/runqueue.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/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 7451e5c56b..63cce8184f 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -1408,7 +1408,7 @@ class RunQueue:
1408 logger.debug2("%s.%s is nostamp\n", fn, taskname) 1408 logger.debug2("%s.%s is nostamp\n", fn, taskname)
1409 return False 1409 return False
1410 1410
1411 if taskname != "do_setscene" and taskname.endswith("_setscene"): 1411 if taskname.endswith("_setscene"):
1412 return True 1412 return True
1413 1413
1414 if cache is None: 1414 if cache is None: