diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2017-03-20 21:59:10 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2017-03-20 23:15:01 -0400 |
commit | 7d66b0cc41110ef81fb94dc3bc6411b9570e5f12 (patch) | |
tree | 93f07dc0a676f5389c41ded50875792e20f5f6dc /recipes-containers/riddler | |
parent | a050e7a61dac3d8fc2f8f68e763002b4a4664d71 (diff) | |
download | meta-virtualization-7d66b0cc41110ef81fb94dc3bc6411b9570e5f12.tar.gz |
go: replace explicit go-cross* with inherit go bbclass
Rather than expliciting depending on go-cross-${TARGET_ARCH}, we
can now simply inherit the oe-core go bbclass. This gets us the
correct go dependencies and other variables properly set.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-containers/riddler')
-rw-r--r-- | recipes-containers/riddler/riddler_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-containers/riddler/riddler_git.bb b/recipes-containers/riddler/riddler_git.bb index 49e8aa01..a04cc3e2 100644 --- a/recipes-containers/riddler/riddler_git.bb +++ b/recipes-containers/riddler/riddler_git.bb | |||
@@ -2,7 +2,6 @@ HOMEPAGE = "https://github.com/jfrazelle/riddler" | |||
2 | SUMMARY = "Convert `docker inspect` to opencontainers (OCI compatible) runc spec." | 2 | SUMMARY = "Convert `docker inspect` to opencontainers (OCI compatible) runc spec." |
3 | LICENSE = "MIT" | 3 | LICENSE = "MIT" |
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=20ce4c6a4f32d6ee4a68e3a7506db3f1" | 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=20ce4c6a4f32d6ee4a68e3a7506db3f1" |
5 | DEPENDS = "go-cross-${TARGET_ARCH}" | ||
6 | 5 | ||
7 | SRC_URI = "git://github.com/jfrazelle/riddler;branch=master" | 6 | SRC_URI = "git://github.com/jfrazelle/riddler;branch=master" |
8 | SRCREV = "23befa0b232877b5b502b828e24161d801bd67f6" | 7 | SRCREV = "23befa0b232877b5b502b828e24161d801bd67f6" |
@@ -11,6 +10,7 @@ PV = "0.1.0+git${SRCPV}" | |||
11 | S = "${WORKDIR}/git" | 10 | S = "${WORKDIR}/git" |
12 | 11 | ||
13 | inherit go-osarchmap | 12 | inherit go-osarchmap |
13 | inherit go | ||
14 | 14 | ||
15 | # This disables seccomp and apparmor, which are on by default in the | 15 | # This disables seccomp and apparmor, which are on by default in the |
16 | # go package. | 16 | # go package. |