From 4218573b08e7cd4d5f6ed06d49165311a605d2c4 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Mon, 1 Mar 2021 11:37:40 -0500 Subject: yq: export GO111MODULE=off With the latest go version bump in oe-core export GO111MODULE is on by default. Our build is not setup to use go modules, so we disable it and avoid configuration errors: no required module provides package ... : working directory is not part of a module Signed-off-by: Bruce Ashfield --- recipes-devtools/yq/yq_git.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes-devtools/yq/yq_git.bb b/recipes-devtools/yq/yq_git.bb index 05975aa9..a89c8338 100644 --- a/recipes-devtools/yq/yq_git.bb +++ b/recipes-devtools/yq/yq_git.bb @@ -39,6 +39,7 @@ do_compile_prepend() { # arrange for the fetched dependencies to be found export GOPATH="${GOPATH}:${WORKDIR}/build/vendor/" + export GO111MODULE=off } -- cgit v1.2.3-54-g00ecf