[oe-commits] [openembedded-core] 01/14: sstatesig: Fix leftover splitting issue from siggen change

git at git.openembedded.org git at git.openembedded.org
Thu Aug 8 21:49:36 UTC 2019


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

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

commit 8b76048da99ec3be7d763b7ccc81f767c7015bc7
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Aug 8 22:46:05 2019 +0100

    sstatesig: Fix leftover splitting issue from siggen change
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oe/sstatesig.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py
index ee4f28e..0c7a6f5 100644
--- a/meta/lib/oe/sstatesig.py
+++ b/meta/lib/oe/sstatesig.py
@@ -288,7 +288,7 @@ def find_siginfo(pn, taskname, taskhashlist, d):
     if not taskname:
         # We have to derive pn and taskname
         key = pn
-        splitit = key.split('.bb.')
+        splitit = key.split('.bb:')
         taskname = splitit[1]
         pn = os.path.basename(splitit[0]).split('_')[0]
         if key.startswith('virtual:native:'):

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


More information about the Openembedded-commits mailing list