All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] build: Ensure we preserve sigbasedata files as well as sigdata ones
@ 2016-11-02 15:06 Richard Purdie
  0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2016-11-02 15:06 UTC (permalink / raw)
  To: bitbake-devel

We don't remove sigdata files, we also shouldn't remove sigbasedata files
as this hinders debugging.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>

diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index b5e80bc..574c64f 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -715,7 +715,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'):




^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-11-02 15:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-02 15:06 [PATCH] build: Ensure we preserve sigbasedata files as well as sigdata ones Richard Purdie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.