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, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index 80bb887383..f1384ef312 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -416,6 +416,12 @@ def make_stamp(task, d, file_name = None):
416 f = open(stamp, "w") 416 f = open(stamp, "w")
417 f.close() 417 f.close()
418 418
419 # If we're in task context, write out a signature file for each task
420 # as it completes
421 if not task.endswith("_setscene") and task != "do_setscene" and not file_name:
422 file_name = d.getVar('BB_FILENAME', True)
423 bb.parse.siggen.dump_sigtask(file_name, task, d.getVar('STAMP', True), True)
424
419def del_stamp(task, d, file_name = None): 425def del_stamp(task, d, file_name = None):
420 """ 426 """
421 Removes a stamp for a given task 427 Removes a stamp for a given task