summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/build.py
diff options
context:
space:
mode:
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)