From 302a4c77c916604039270df1d9ba0fa8d8f12ec9 Mon Sep 17 00:00:00 2001 From: Joe Slater Date: Tue, 5 Feb 2019 11:14:47 -0800 Subject: [PATCH] riddler: do not try to build for mips This recipe does not build for mips, so set COMPATIBLE_HOST to avoid that. Signed-off-by: Joe Slater Signed-off-by: Bruce Ashfield --- recipes-containers/riddler/riddler_git.bb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/recipes-containers/riddler/riddler_git.bb b/recipes-containers/riddler/riddler_git.bb index 9f7fe6b4..08976060 100644 --- a/recipes-containers/riddler/riddler_git.bb +++ b/recipes-containers/riddler/riddler_git.bb @@ -13,6 +13,10 @@ S = "${WORKDIR}/git" inherit goarch inherit go +# In addition to hosts go does not like, we do not build for mips. +# +COMPATIBLE_HOST_mipsarch = "null" + # This disables seccomp and apparmor, which are on by default in the # go package. EXTRA_OEMAKE="BUILDTAGS=''"