aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/build.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 16:33:23 +0000
commitef72282298f7c4db74383c23bb0251dd06d3c6d3 (patch)
treef92a85ede37308e7246ebbbc8f41db1798ce0557 /lib/bb/build.py
parentb36545b4df6d935ed312ff407d4e0474c3ed8d1a (diff)
downloadbitbake-ef72282298f7c4db74383c23bb0251dd06d3c6d3.tar.gz
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. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/build.py')
-rw-r--r--lib/bb/build.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bb/build.py b/lib/bb/build.py
index db706d0a3..5ac191647 100644
--- a/lib/bb/build.py
+++ b/lib/bb/build.py
@@ -782,7 +782,7 @@ def stamp_internal(taskname, d, file_name, baseonly=False, noextra=False):
When called in task context, d will be a data store, file_name will not be set
"""
taskflagname = taskname
- if taskname.endswith("_setscene") and taskname != "do_setscene":
+ if taskname.endswith("_setscene"):
taskflagname = taskname.replace("_setscene", "")
if file_name:
@@ -818,7 +818,7 @@ def stamp_cleanmask_internal(taskname, d, file_name):
When called in task context, d will be a data store, file_name will not be set
"""
taskflagname = taskname
- if taskname.endswith("_setscene") and taskname != "do_setscene":
+ if taskname.endswith("_setscene"):
taskflagname = taskname.replace("_setscene", "")
if file_name:
@@ -865,7 +865,7 @@ def make_stamp(task, d, file_name = None):
# If we're in task context, write out a signature file for each task
# as it completes
- if not task.endswith("_setscene") and task != "do_setscene" and not file_name:
+ if not task.endswith("_setscene") and not file_name:
stampbase = stamp_internal(task, d, None, True)
file_name = d.getVar('BB_FILENAME')
bb.parse.siggen.dump_sigtask(file_name, task, stampbase, True)