[oe-commits] [bitbake] branch master-next updated: siggen: Make calc_taskhash match get_taskhash for file checksums

git at git.openembedded.org git at git.openembedded.org
Mon May 29 14:16:21 UTC 2017


This is an automated email from the git hooks/post-receive script.

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

The following commit(s) were added to refs/heads/master-next by this push:
     new 358a387  siggen: Make calc_taskhash match get_taskhash for file checksums
358a387 is described below

commit 358a387aaeccb8c98df346166ca4d37107369e5c
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Mon May 29 11:10:18 2017 +0100

    siggen: Make calc_taskhash match get_taskhash for file checksums
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/siggen.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/bb/siggen.py b/lib/bb/siggen.py
index 169756e..f71190a 100644
--- a/lib/bb/siggen.py
+++ b/lib/bb/siggen.py
@@ -667,7 +667,8 @@ def calc_taskhash(sigdata):
         data = data + sigdata['runtaskhashes'][dep]
 
     for c in sigdata['file_checksum_values']:
-        data = data + c[1]
+        if c[1]:
+            data = data + c[1]
 
     if 'taint' in sigdata:
         if 'nostamp:' in sigdata['taint']:

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


More information about the Openembedded-commits mailing list