All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] recipetool/append: Fix selftest failure with multilib
@ 2015-07-10 13:12 Richard Purdie
  0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2015-07-10 13:12 UTC (permalink / raw)
  To: openembedded-core

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.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>

diff --git a/scripts/lib/recipetool/append.py b/scripts/lib/recipetool/append.py
index 9903871..a2133f7 100644
--- a/scripts/lib/recipetool/append.py
+++ b/scripts/lib/recipetool/append.py
@@ -280,6 +280,9 @@ def appendfile(args):
                 alternative_pns.append(pn[1:])
             elif pn.startswith('!'):
                 postinst_pns.append(pn[1:])
+            elif selectpn:
+                # hit here with multilibs
+                continue
             else:
                 selectpn = pn
 




^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-07-10 13:12 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-10 13:12 [PATCH] recipetool/append: Fix selftest failure with multilib Richard Purdie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.