diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-31 14:52:11 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-11-07 23:08:55 +0000 |
commit | e06de80a616ce2c78c6b416149710fcb45f6e986 (patch) | |
tree | b8e53eb502f3b906c6cff2a7201d0e05370757e3 /meta/classes | |
parent | 09e1916ef6a9f8141e51e7b79e2b4528fce02811 (diff) | |
download | poky-e06de80a616ce2c78c6b416149710fcb45f6e986.tar.gz |
go: Change from TARGET_ARCH to TUNE_PKGARCH
Right now go-cross is changing signatures when you change TUNE for a given
architecture. In particular this breaks layer tests like:
yocto-check-layer ../meta-yocto-bsp/ --machines qemuarm beaglebone-yocto
This changes the PN addtion to something containing the tune rather than
the arch which avoids these kinds of errors. If go-cross can be tune
independent that would be nice but currently that isn't the case.
[YOCTO #12586]
(From OE-Core rev: e3c7e1703499e6a5332d9ab8a941671ec8235c4f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/go.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/go.bbclass b/meta/classes/go.bbclass index 167d02e3fa..af331f8018 100644 --- a/meta/classes/go.bbclass +++ b/meta/classes/go.bbclass | |||
@@ -8,7 +8,7 @@ GOROOT = "${STAGING_LIBDIR}/go" | |||
8 | export GOROOT | 8 | export GOROOT |
9 | export GOROOT_FINAL = "${libdir}/go" | 9 | export GOROOT_FINAL = "${libdir}/go" |
10 | 10 | ||
11 | DEPENDS_GOLANG_class-target = "virtual/${TARGET_PREFIX}go virtual/${TARGET_PREFIX}go-runtime" | 11 | DEPENDS_GOLANG_class-target = "virtual/${TUNE_PKGARCH}-go virtual/${TARGET_PREFIX}go-runtime" |
12 | DEPENDS_GOLANG_class-native = "go-native" | 12 | DEPENDS_GOLANG_class-native = "go-native" |
13 | DEPENDS_GOLANG_class-nativesdk = "virtual/${TARGET_PREFIX}go-crosssdk virtual/${TARGET_PREFIX}go-runtime" | 13 | DEPENDS_GOLANG_class-nativesdk = "virtual/${TARGET_PREFIX}go-crosssdk virtual/${TARGET_PREFIX}go-runtime" |
14 | 14 | ||