mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
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: 8b879fd81fdcf86645cfabad0f54454ba573df52) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -723,7 +723,7 @@ def make_stamp(task, d, file_name = None):
|
|||||||
for mask in cleanmask:
|
for mask in cleanmask:
|
||||||
for name in glob.glob(mask):
|
for name in glob.glob(mask):
|
||||||
# Preserve sigdata files in the stamps directory
|
# Preserve sigdata files in the stamps directory
|
||||||
if "sigdata" in name:
|
if "sigdata" in name or "sigbasedata" in name:
|
||||||
continue
|
continue
|
||||||
# Preserve taint files in the stamps directory
|
# Preserve taint files in the stamps directory
|
||||||
if name.endswith('.taint'):
|
if name.endswith('.taint'):
|
||||||
|
|||||||
Reference in New Issue
Block a user