diff options
Diffstat (limited to 'bitbake/lib/bb/build.py')
| -rw-r--r-- | bitbake/lib/bb/build.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index 5f5a007196..d91ff53fcf 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py | |||
| @@ -519,10 +519,13 @@ def make_stamp(task, d, file_name = None): | |||
| 519 | """ | 519 | """ |
| 520 | cleanmask = stamp_cleanmask_internal(task, d, file_name) | 520 | cleanmask = stamp_cleanmask_internal(task, d, file_name) |
| 521 | for mask in cleanmask: | 521 | for mask in cleanmask: |
| 522 | # Preserve sigdata files in the stamps directory | ||
| 523 | for name in glob.glob(mask): | 522 | for name in glob.glob(mask): |
| 523 | # Preserve sigdata files in the stamps directory | ||
| 524 | if "sigdata" in name: | 524 | if "sigdata" in name: |
| 525 | continue | 525 | continue |
| 526 | # Preserve taint files in the stamps directory | ||
| 527 | if name.endswith('.taint'): | ||
| 528 | continue | ||
| 526 | os.unlink(name) | 529 | os.unlink(name) |
| 527 | 530 | ||
| 528 | stamp = stamp_internal(task, d, file_name) | 531 | stamp = stamp_internal(task, d, file_name) |
