diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-02 15:06:00 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-16 10:37:58 +0000 |
commit | aea27a0554961f7be352473a264659458f48c699 (patch) | |
tree | f786079e4e221c384bfbd91ca34526953338f1f1 /bitbake/lib/bb | |
parent | 350df1de9ce506d2fe95b4f324d470783c7ff3e3 (diff) | |
download | poky-aea27a0554961f7be352473a264659458f48c699.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>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index c4c8aeb645..e807a0948c 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py | |||
@@ -723,7 +723,7 @@ def make_stamp(task, d, file_name = None): | |||
723 | for mask in cleanmask: | 723 | for mask in cleanmask: |
724 | for name in glob.glob(mask): | 724 | for name in glob.glob(mask): |
725 | # Preserve sigdata files in the stamps directory | 725 | # Preserve sigdata files in the stamps directory |
726 | if "sigdata" in name: | 726 | if "sigdata" in name or "sigbasedata" in name: |
727 | continue | 727 | continue |
728 | # Preserve taint files in the stamps directory | 728 | # Preserve taint files in the stamps directory |
729 | if name.endswith('.taint'): | 729 | if name.endswith('.taint'): |