summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-02-21 15:23:35 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-26 08:46:19 -0800
commit4a97b83d1d48a5df58733058d41b665b9230198f (patch)
tree05f117dba466f08f5d222205f351c43c13ac4637
parent3eeba5c769b7dcb06f4868d6dbc15f05864e97fe (diff)
downloadbitbake-4a97b83d1d48a5df58733058d41b665b9230198f.tar.gz
build.py: avoid deleting taint files when writing stamps
The stamp cleaning process that occurs before writing out new stamps for a task was deleting taint files as well. This resulted in tasks that were forcibly re-executed using the -f or -C command line options to have their previous output restored from shared state when called upon a second time, because the taint value was no longer incorporated into the task signature and thus it was reverting to its previous value. This also affected the kernel menuconfig command in OE-Core. Note that the taint file *is* still deleted when doing -c clean, which is the desired behaviour. Fixes [YOCTO #3919]. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/build.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/bb/build.py b/lib/bb/build.py
index 43790a658..1bda5d0da 100644
--- a/lib/bb/build.py
+++ b/lib/bb/build.py
@@ -505,10 +505,13 @@ def make_stamp(task, d, file_name = None):
"""
cleanmask = stamp_cleanmask_internal(task, d, file_name)
for mask in cleanmask:
- # Preserve sigdata files in the stamps directory
for name in glob.glob(mask):
+ # Preserve sigdata files in the stamps directory
if "sigdata" in name:
continue
+ # Preserve taint files in the stamps directory
+ if name.endswith('.taint'):
+ continue
os.unlink(name)
stamp = stamp_internal(task, d, file_name)