All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-mingw][PATCH] Fix HOSTTOOLS class detection
@ 2018-11-21 16:23 Joshua Watt
  0 siblings, 0 replies; only message in thread
From: Joshua Watt @ 2018-11-21 16:23 UTC (permalink / raw)
  To: yocto

Adding wine to HOSTTOOLS for the purpose of testing the SDK wasn't
working because the it was looking for a non-existent class
("testsdk-mingw") instead of "testsdk"

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
 conf/machine-sdk/include/mingw32-common.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/conf/machine-sdk/include/mingw32-common.inc b/conf/machine-sdk/include/mingw32-common.inc
index 71e8d45..9011ded 100644
--- a/conf/machine-sdk/include/mingw32-common.inc
+++ b/conf/machine-sdk/include/mingw32-common.inc
@@ -44,5 +44,5 @@ DISABLE_STATIC_mingw32 = ""
 GCCPIE_mingw32 = ""
 
 # wine and wineserver are required to test MinGW SDKs
-HOSTTOOLS += "${@'wine wineserver' if (bb.utils.contains_any('IMAGE_CLASSES', 'testsdk-mingw', True, False, d) or any(x in (d.getVar("BBINCLUDED") or "") for x in ["testsdk-mingw.bbclass"])) else ''}"
+HOSTTOOLS += "${@'wine wineserver' if (bb.utils.contains_any('IMAGE_CLASSES', 'testsdk', True, False, d) or any(x in (d.getVar("BBINCLUDED") or "") for x in ["testsdk.bbclass"])) else ''}"
 
-- 
2.19.1



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

only message in thread, other threads:[~2018-11-21 16:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-21 16:23 [meta-mingw][PATCH] Fix HOSTTOOLS class detection Joshua Watt

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.