summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-11-02 15:06:00 +0000
committerSona Sarmadi <sona.sarmadi@enea.com>2017-02-10 12:21:35 +0100
commit1188de6e65fb93fd15db5bab68d8a2226c1478c7 (patch)
tree81c2b55eb47afc9422af4d478223e56aa67199c1
parentfb79511ec774eff70ece8c2aac290e2173ee4814 (diff)
downloadpoky-1188de6e65fb93fd15db5bab68d8a2226c1478c7.tar.gz
bitbake: build: Ensure we preserve sigbasedata files as well as sigdata ones
We don't remove sigdata files, we also shouldn't remove sigbasedata files as this hinders debugging. (Bitbake rev: 06e7c00f2e1ddda6a2632ec2354a3c8f5c34562d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Sona Sarmadi <sona.sarmadi@enea.com>
-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'):