From: João Marcos Costa Date: Thu, 14 May 2026 21:48:50 +0000 (+0200) Subject: nativesdk.bbclass: remove obsolete comment X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=5684c9277e4e986af489f6267140f49f50eeebc4;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git nativesdk.bbclass: remove obsolete comment Instead of removing it, one could just uncomment the line. However, the final value of HOST_SYS would then be the very same of HOST_SYS as currently defined in bitbake.conf: - bitbake.conf: "${HOST_ARCH}${HOST_VENDOR}-${HOST_OS}" -> HOST_SYS="x86_64-oesdk-linux" - nativesdk.bbclass: "${HOST_ARCH}${TARGET_VENDOR}-${HOST_OS}" -> HOST_SYS="x86_64-oesdk-linux" That is because both TARGET_VENDOR and HOST_VENDOR equals SDK_VENDOR in nativesdk.bbclass. Signed-off-by: João Marcos Costa Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- diff --git a/meta/classes-recipe/nativesdk.bbclass b/meta/classes-recipe/nativesdk.bbclass index 5b49affd53..68c492f8cb 100644 --- a/meta/classes-recipe/nativesdk.bbclass +++ b/meta/classes-recipe/nativesdk.bbclass @@ -48,7 +48,6 @@ HOST_PREFIX = "${SDK_PREFIX}" HOST_CC_ARCH = "${SDK_CC_ARCH}" HOST_LD_ARCH = "${SDK_LD_ARCH}" HOST_AS_ARCH = "${SDK_AS_ARCH}" -#HOST_SYS = "${HOST_ARCH}${TARGET_VENDOR}-${HOST_OS}" TARGET_ARCH = "${SDK_ARCH}" TARGET_VENDOR = "${SDK_VENDOR}"