From 5b35a014bdcd982840dbd0b705e9a2f0294e7116 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Mon, 1 Mar 2021 12:13:31 -0500 Subject: go-md2man: 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/go/go-md2man_git.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipes-devtools/go/go-md2man_git.bb b/recipes-devtools/go/go-md2man_git.bb index cc8dd5c3..a1fcbe9b 100644 --- a/recipes-devtools/go/go-md2man_git.bb +++ b/recipes-devtools/go/go-md2man_git.bb @@ -18,3 +18,6 @@ S = "${WORKDIR}/git" inherit go +do_compile_prepend() { + export GO111MODULE=off +} -- cgit v1.2.3-54-g00ecf