summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2021-03-01 11:37:40 -0500
committerBruce Ashfield <bruce.ashfield@gmail.com>2021-03-01 17:02:33 -0500
commit4218573b08e7cd4d5f6ed06d49165311a605d2c4 (patch)
tree8add7122452dbeddfcbbb2ea807a0f6fb4d5914d
parent7aee7a31ed93d788fa89164255212b87b1cedd3d (diff)
downloadmeta-virtualization-4218573b08e7cd4d5f6ed06d49165311a605d2c4.tar.gz
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 <bruce.ashfield@gmail.com>
-rw-r--r--recipes-devtools/yq/yq_git.bb1
1 files changed, 1 insertions, 0 deletions
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() {
39 39
40 # arrange for the fetched dependencies to be found 40 # arrange for the fetched dependencies to be found
41 export GOPATH="${GOPATH}:${WORKDIR}/build/vendor/" 41 export GOPATH="${GOPATH}:${WORKDIR}/build/vendor/"
42 export GO111MODULE=off
42} 43}
43 44
44 45