From 690761393c5bba906a0332f2c5a4cb9d17a3d3ad Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Fri, 26 Mar 2021 09:25:52 -0400 Subject: go-build: export GO111MODULE=off We aren't setup for go module builds, so we need to disable it in the go-build recipe. Signed-off-by: Bruce Ashfield --- recipes-devtools/go/go-build_git.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes-devtools/go/go-build_git.bb b/recipes-devtools/go/go-build_git.bb index 29d75984..64a1c95b 100644 --- a/recipes-devtools/go/go-build_git.bb +++ b/recipes-devtools/go/go-build_git.bb @@ -44,6 +44,7 @@ do_compile() { export CC="${CC}" export LD="${LD}" export GOBIN="" + export GO111MODULE=off oe_runmake GO=${GO} } -- cgit v1.2.3-54-g00ecf