mirror of
https://git.yoctoproject.org/poky
synced 2026-07-26 07:07:08 +00:00
Convert to new override syntax
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -176,7 +176,7 @@ def reset_alternative_priority(d):
|
||||
bb.debug(1, '%s: Setting ALTERNATIVE_PRIORITY_%s to %s' % (pkg, pkg, reset_priority))
|
||||
d.setVar('ALTERNATIVE_PRIORITY_%s' % pkg, reset_priority)
|
||||
|
||||
for alt_name in (d.getVar('ALTERNATIVE_%s' % pkg) or "").split():
|
||||
for alt_name in (d.getVar('ALTERNATIVE:%s' % pkg) or "").split():
|
||||
# ALTERNATIVE_PRIORITY_pkg[tool] = priority
|
||||
alt_priority_pkg_name = d.getVarFlag('ALTERNATIVE_PRIORITY_%s' % pkg, alt_name)
|
||||
# ALTERNATIVE_PRIORITY[tool] = priority
|
||||
@@ -191,7 +191,7 @@ def reset_alternative_priority(d):
|
||||
bb.debug(1, '%s: Setting ALTERNATIVE_PRIORITY[%s] to %s' % (pkg, alt_name, reset_priority))
|
||||
d.setVarFlag('ALTERNATIVE_PRIORITY', alt_name, reset_priority)
|
||||
|
||||
PACKAGEFUNCS_append = " do_package_qa_multilib"
|
||||
PACKAGEFUNCS:append = " do_package_qa_multilib"
|
||||
|
||||
python do_package_qa_multilib() {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user