diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-07 13:45:17 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-10 14:46:38 +0100 |
commit | 32df42cff5370bb0bda51f0f637357c18ee3b1eb (patch) | |
tree | f8ba4e316a8cea58debd8c1591ca1a19746e8056 /meta/lib | |
parent | e5217b6c1024f216226443cb8246db9fc090f113 (diff) | |
download | poky-32df42cff5370bb0bda51f0f637357c18ee3b1eb.tar.gz |
multiconfig: Adapt to bitbake switch 'multiconfig' -> 'mc'
(From OE-Core rev: 8a6f7c1e455156966f467008645fef14db679ccf)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/sstatesig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index 417943db90..13af16e473 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py | |||
@@ -155,7 +155,7 @@ class SignatureGeneratorOEBasicHash(bb.siggen.SignatureGeneratorBasicHash): | |||
155 | else: | 155 | else: |
156 | def get_mc(tid): | 156 | def get_mc(tid): |
157 | tid = tid.rsplit('.', 1)[0] | 157 | tid = tid.rsplit('.', 1)[0] |
158 | if tid.startswith('multiconfig:'): | 158 | if tid.startswith('mc:'): |
159 | elems = tid.split(':') | 159 | elems = tid.split(':') |
160 | return elems[1] | 160 | return elems[1] |
161 | def recipename_from_dep(dep): | 161 | def recipename_from_dep(dep): |