From 80dc146a5a4cd8772a49e4fca56eb5467cdb1451 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Thu, 16 May 2019 16:56:24 +0000 Subject: tcmode-default.inc: use the same TUNE_PKGARCH variable as PN set in go-cross * otherwise P_V might be set for i686 and PN and RECIPE_MAINTAINER for i586 from bitbake -e lib32-gcc-cross-i686: PREFERRED_VERSION_lib32-go-cross-i686="1.12%" RECIPE_MAINTAINER_pn-go-cross-i586="Khem Raj " $ git grep 'go-cross-${' meta/conf/distro/include/maintainers.inc:RECIPE_MAINTAINER_pn-go-cross-${TUNE_PKGARCH} = "Khem Raj " meta/conf/distro/include/tcmode-default.inc:PREFERRED_VERSION_go-cross-${TARGET_ARCH} ?= "${GOVERSION}" meta/recipes-devtools/go/go-cross.inc:PN = "go-cross-${TUNE_PKGARCH}" * actually is there a reson to use TUNE_PKGARCH here (unlike other cross/canadian-cross recipes which are using TARGET_ARCH/TRANSLATED_TARGET_ARCH)? Signed-off-by: Martin Jansa Signed-off-by: Richard Purdie --- meta/conf/distro/include/tcmode-default.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/conf/distro/include/tcmode-default.inc b/meta/conf/distro/include/tcmode-default.inc index daacfe28c4..668f31324e 100644 --- a/meta/conf/distro/include/tcmode-default.inc +++ b/meta/conf/distro/include/tcmode-default.inc @@ -68,7 +68,7 @@ PREFERRED_VERSION_qemu-native ?= "${QEMUVERSION}" PREFERRED_VERSION_nativesdk-qemu ?= "${QEMUVERSION}" PREFERRED_VERSION_virtual/${TARGET_PREFIX}go ?= "${GOVERSION}" -PREFERRED_VERSION_go-cross-${TARGET_ARCH} ?= "${GOVERSION}" +PREFERRED_VERSION_go-cross-${TUNE_PKGARCH} ?= "${GOVERSION}" PREFERRED_VERSION_go-crosssdk-${SDK_ARCH} ?= "${GOVERSION}" PREFERRED_VERSION_go-cross-canadian-${TRANSLATED_TARGET_ARCH} ?= "${GOVERSION}" PREFERRED_VERSION_go ?= "${GOVERSION}" -- cgit 1.2.3-korg