summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index db5072cb4d..ebb9a3e4ae 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -646,7 +646,7 @@ def make_stamp(task, d, file_name = None):
646 for mask in cleanmask: 646 for mask in cleanmask:
647 for name in glob.glob(mask): 647 for name in glob.glob(mask):
648 # Preserve sigdata files in the stamps directory 648 # Preserve sigdata files in the stamps directory
649 if "sigdata" in name: 649 if "sigdata" in name or "sigbasedata" in name:
650 continue 650 continue
651 # Preserve taint files in the stamps directory 651 # Preserve taint files in the stamps directory
652 if name.endswith('.taint'): 652 if name.endswith('.taint'):