mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
meta: Manual override fixes
The automated conversion of OE-Core to use the new override sytax isn't perfect. This patches some mis-converted lines and some lines which were missed by the automation. (From OE-Core rev: 4e9a06b64b43131b731fb59a0305f78a98e27fbd) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -70,7 +70,7 @@ python systemd_populate_packages() {
|
||||
return
|
||||
|
||||
def get_package_var(d, var, pkg):
|
||||
val = (d.getVar('%s_%s' % (var, pkg)) or "").strip()
|
||||
val = (d.getVar('%s:%s' % (var, pkg)) or "").strip()
|
||||
if val == "":
|
||||
val = (d.getVar(var) or "").strip()
|
||||
return val
|
||||
|
||||
Reference in New Issue
Block a user