From: Richard Purdie Date: Wed, 2 Nov 2016 15:06:00 +0000 (+0000) Subject: bitbake: build: Ensure we preserve sigbasedata files as well as sigdata ones X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aea27a0554961f7be352473a264659458f48c699;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index c4c8aeb645a..e807a0948c1 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): 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'):