From c60a0a51d778bf25d926aa5c74325a3fe9d73a05 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 2 Nov 2016 15:06:00 +0000 Subject: 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: 24611df046f798276e7aa3f5d65976249ee117d4) Signed-off-by: Richard Purdie --- bitbake/lib/bb/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake') 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): for mask in cleanmask: for name in glob.glob(mask): # Preserve sigdata files in the stamps directory - if "sigdata" in name: + if "sigdata" in name or "sigbasedata" in name: continue # Preserve taint files in the stamps directory if name.endswith('.taint'): -- cgit v1.2.3-54-g00ecf