[oe-commits] [bitbake] 01/20: build: Ensure we preserve sigbasedata files as well as sigdata ones

git at git.openembedded.org git at git.openembedded.org
Thu Nov 3 13:34:17 UTC 2016


rpurdie pushed a commit to branch master-next
in repository bitbake.

commit 547d8372622803498635bf01e3f6425a42d50986
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Wed Nov 2 15:06:00 2016 +0000

    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.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/build.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/build.py b/lib/bb/build.py
index c4c8aeb..e807a09 100644
--- a/lib/bb/build.py
+++ b/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'):

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list