summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/copy_buildsystem.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-29 17:28:04 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-08-06 11:24:26 +0100
commita0542ed3ff700eca35f9195f743c9e28bcd50f3e (patch)
tree89365477808ad999fb35b96ab4b86d66d164a06f /meta/lib/oe/copy_buildsystem.py
parentbcc9f1b5f1e1c78d07b250672e4ea84d942514e5 (diff)
downloadpoky-a0542ed3ff700eca35f9195f743c9e28bcd50f3e.tar.gz
sstatesig: Updates to match bitbake siggen changes
Update the metadata to correspond to the bitbake siggen task specification format change. This standardises on "<fn>:<task>" everywhere rather than the "." delimiter that was being used in some places. This is an API breaking change but means we now have a consistent format being used throughout the codebase without compatibility APIs. (From OE-Core rev: 23db236a054ee7a989cdbbcb42ad5c6eefd4a6ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/copy_buildsystem.py')
-rw-r--r--meta/lib/oe/copy_buildsystem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/copy_buildsystem.py b/meta/lib/oe/copy_buildsystem.py
index 246ff58250..cb663b21c6 100644
--- a/meta/lib/oe/copy_buildsystem.py
+++ b/meta/lib/oe/copy_buildsystem.py
@@ -174,7 +174,7 @@ class BuildSystem(object):
174def generate_locked_sigs(sigfile, d): 174def generate_locked_sigs(sigfile, d):
175 bb.utils.mkdirhier(os.path.dirname(sigfile)) 175 bb.utils.mkdirhier(os.path.dirname(sigfile))
176 depd = d.getVar('BB_TASKDEPDATA', False) 176 depd = d.getVar('BB_TASKDEPDATA', False)
177 tasks = ['%s.%s' % (v[2], v[1]) for v in depd.values()] 177 tasks = ['%s:%s' % (v[2], v[1]) for v in depd.values()]
178 bb.parse.siggen.dump_lockedsigs(sigfile, tasks) 178 bb.parse.siggen.dump_lockedsigs(sigfile, tasks)
179 179
180def prune_lockedsigs(excluded_tasks, excluded_targets, lockedsigs, pruned_output): 180def prune_lockedsigs(excluded_tasks, excluded_targets, lockedsigs, pruned_output):