mirror of
git://git.yoctoproject.org/poky
synced 2026-08-15 07:09:15 +00:00
recipetool/append: Fix selftest failure with multilib
If you have multilib enabled, it finds lib32-base-files instead of base-files for test_recipetool_appendfile_basic causing a test failure. Add a fix for this. (From OE-Core rev: c9821a56da9c6e341408ea21e0d8a4cc5291dba6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
b60521c9b3
commit
ee69463f4e
@ -280,6 +280,9 @@ def appendfile(args):
|
|||||||
alternative_pns.append(pn[1:])
|
alternative_pns.append(pn[1:])
|
||||||
elif pn.startswith('!'):
|
elif pn.startswith('!'):
|
||||||
postinst_pns.append(pn[1:])
|
postinst_pns.append(pn[1:])
|
||||||
|
elif selectpn:
|
||||||
|
# hit here with multilibs
|
||||||
|
continue
|
||||||
else:
|
else:
|
||||||
selectpn = pn
|
selectpn = pn
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user