All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][honister 1/3] arm/lib/oeqa: fix module lookup
@ 2021-10-20 15:25 Ross Burton
  2021-10-20 15:25 ` [PATCH][honister 2/3] arm/trusted-firmware-m: enabling PACKAGECONFIG when using CMake Ross Burton
  2021-10-20 15:25 ` [PATCH][honister 3/3] arm/trusted-firmware-m: setting the toolchain file path in PACKAGECONFIG Ross Burton
  0 siblings, 2 replies; 3+ messages in thread
From: Ross Burton @ 2021-10-20 15:25 UTC (permalink / raw)
  To: meta-arm

As multiple paths can and do provide modules under oeqa.controllers, all
of these paths need to call pkgutil.extend_path() so the lookup works
correctly.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 meta-arm/lib/oeqa/controllers/__init__.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-arm/lib/oeqa/controllers/__init__.py b/meta-arm/lib/oeqa/controllers/__init__.py
index e69de29b..df3c142a 100644
--- a/meta-arm/lib/oeqa/controllers/__init__.py
+++ b/meta-arm/lib/oeqa/controllers/__init__.py
@@ -0,0 +1,3 @@
+# This is needed so that multiple locations can provide the same package
+from pkgutil import extend_path
+__path__ = extend_path(__path__, __name__)
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-10-20 15:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-20 15:25 [PATCH][honister 1/3] arm/lib/oeqa: fix module lookup Ross Burton
2021-10-20 15:25 ` [PATCH][honister 2/3] arm/trusted-firmware-m: enabling PACKAGECONFIG when using CMake Ross Burton
2021-10-20 15:25 ` [PATCH][honister 3/3] arm/trusted-firmware-m: setting the toolchain file path in PACKAGECONFIG Ross Burton

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.