mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Fix random python backtrace in mutlilib handling code.
newval is not defined in all cases. Set to None and check if it is set.
File
"/local/foo/builds/x86/layers/openembedded-core/meta/classes/multilib_global.bbclass",
line 90, in preferred_ml_updates(d=<bb.data_smart.DataSmart object at
0xf6fd528c>):
if not d.getVar(newname, False):
> d.setVar(newname, localdata.expand(newval))
# Avoid future variable key expansion
UnboundLocalError: local variable 'newval' referenced before assignment
(From OE-Core rev: 25ebd3bbc1f9f4b1b6147d98dd43690c3bf03ee7)
(From OE-Core rev: 81e6c67db85b5e4864aa11f6504a8bef59be8609)
Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
16f046f38f
commit
3cc3ff6244
|
|
@ -72,6 +72,7 @@ def preferred_ml_updates(d):
|
|||
pkg = pkg.replace("virtual/", "")
|
||||
virt = "virtual/"
|
||||
for p in prefixes:
|
||||
newval = None
|
||||
if pkg != "kernel":
|
||||
newval = p + "-" + val
|
||||
|
||||
|
|
@ -86,7 +87,7 @@ def preferred_ml_updates(d):
|
|||
|
||||
# implement alternative multilib name
|
||||
newname = localdata.expand("PREFERRED_PROVIDER_" + virt + p + "-" + pkg)
|
||||
if not d.getVar(newname, False):
|
||||
if not d.getVar(newname, False) and newval != None:
|
||||
d.setVar(newname, localdata.expand(newval))
|
||||
# Avoid future variable key expansion
|
||||
provexp = d.expand(prov)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user