summaryrefslogtreecommitdiffstats
path: root/bitbake/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 23:21:27 +0000
commitf329142a31f8207240ad93e5c00e9b6bf8dc9745 (patch)
tree8ab147827cbd0ccc99dc23fc2b7f63d09b6fe31e /bitbake/lib/bb/build.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/build.py')
-rw-r--r--bitbake/lib/bb/build.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index db706d0a3a..5ac191647c 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -782,7 +782,7 @@ def stamp_internal(taskname, d, file_name, baseonly=False, noextra=False):
782 When called in task context, d will be a data store, file_name will not be set 782 When called in task context, d will be a data store, file_name will not be set
783 """ 783 """
784 taskflagname = taskname 784 taskflagname = taskname
785 if taskname.endswith("_setscene") and taskname != "do_setscene": 785 if taskname.endswith("_setscene"):
786 taskflagname = taskname.replace("_setscene", "") 786 taskflagname = taskname.replace("_setscene", "")
787 787
788 if file_name: 788 if file_name:
@@ -818,7 +818,7 @@ def stamp_cleanmask_internal(taskname, d, file_name):
818 When called in task context, d will be a data store, file_name will not be set 818 When called in task context, d will be a data store, file_name will not be set
819 """ 819 """
820 taskflagname = taskname 820 taskflagname = taskname
821 if taskname.endswith("_setscene") and taskname != "do_setscene": 821 if taskname.endswith("_setscene"):
822 taskflagname = taskname.replace("_setscene", "") 822 taskflagname = taskname.replace("_setscene", "")
823 823
824 if file_name: 824 if file_name:
@@ -865,7 +865,7 @@ def make_stamp(task, d, file_name = None):
865 865
866 # If we're in task context, write out a signature file for each task 866 # If we're in task context, write out a signature file for each task
867 # as it completes 867 # as it completes
868 if not task.endswith("_setscene") and task != "do_setscene" and not file_name: 868 if not task.endswith("_setscene") and not file_name:
869 stampbase = stamp_internal(task, d, None, True) 869 stampbase = stamp_internal(task, d, None, True)
870 file_name = d.getVar('BB_FILENAME') 870 file_name = d.getVar('BB_FILENAME')
871 bb.parse.siggen.dump_sigtask(file_name, task, stampbase, True) 871 bb.parse.siggen.dump_sigtask(file_name, task, stampbase, True)