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 <bruce.ashfield@gmail.com>
This commit is contained in:
Bruce Ashfield 2021-03-26 09:25:52 -04:00
parent 46dc0363e3
commit 690761393c

View File

@ -44,6 +44,7 @@ do_compile() {
export CC="${CC}"
export LD="${LD}"
export GOBIN=""
export GO111MODULE=off
oe_runmake GO=${GO}
}