summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/build.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-28 13:34:33 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-28 14:14:07 +0000
commit9de050111b9ae323dcdbb666939afbf898f67de1 (patch)
tree92c7d67fbe423a3a6b933b435846bec838752d27 /bitbake/lib/bb/build.py
parent4493b107a7f0f9b4f441f661c16176157d950245 (diff)
downloadpoky-9de050111b9ae323dcdbb666939afbf898f67de1.tar.gz
bitbake: build/siggen.py: Avoid removing too many stamps when cleaning
The "*" part of the mask is to ensure we clean both any stamp, and any setscene varient. It turns out we would also trample other tasks, e.g. do_package_write could trample do_package_write_rpm. do_package also tramples do_package_write_* but this is less of an issue since the other tasks depend on it. Rather than use the wildcard, we can just use a list instead. [YOCTO #3484] (Bitbake rev: c14d831ea3f625e9a47266a0c4e6deefc924ca5a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/build.py')
-rw-r--r--bitbake/lib/bb/build.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index 85af42c684..8ff7fb2931 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -491,9 +491,11 @@ def stamp_cleanmask_internal(taskname, d, file_name):
491 extrainfo = d.getVarFlag(taskflagname, 'stamp-extra-info', True) or "" 491 extrainfo = d.getVarFlag(taskflagname, 'stamp-extra-info', True) or ""
492 492
493 if not stamp: 493 if not stamp:
494 return 494 return []
495
496 cleanmask = bb.parse.siggen.stampcleanmask(stamp, file_name, taskname, extrainfo)
495 497
496 return bb.parse.siggen.stampcleanmask(stamp, file_name, taskname, extrainfo) 498 return [cleanmask, cleanmask.replace(taskflagname, taskflagname + "_setscene")]
497 499
498def make_stamp(task, d, file_name = None): 500def make_stamp(task, d, file_name = None):
499 """ 501 """
@@ -501,8 +503,8 @@ def make_stamp(task, d, file_name = None):
501 (d can be a data dict or dataCache) 503 (d can be a data dict or dataCache)
502 """ 504 """
503 cleanmask = stamp_cleanmask_internal(task, d, file_name) 505 cleanmask = stamp_cleanmask_internal(task, d, file_name)
504 if cleanmask: 506 for mask in cleanmask:
505 bb.utils.remove(cleanmask) 507 bb.utils.remove(mask)
506 508
507 stamp = stamp_internal(task, d, file_name) 509 stamp = stamp_internal(task, d, file_name)
508 # Remove the file and recreate to force timestamp 510 # Remove the file and recreate to force timestamp