commit: c7e6f5f0e1bd8c9c7f2ac4f10660fcaac525631d Author: William Hubbs <williamh <AT> gentoo <DOT> org> AuthorDate: Wed Sep 1 16:04:56 2021 +0000 Commit: William Hubbs <williamh <AT> gentoo <DOT> org> CommitDate: Wed Sep 1 16:04:56 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7e6f5f0
go-module.eclass: drop --mod=readonly from GOFLAGS As of go 1.16, --mod=readonly is the default, so we don't need to specify it. https://golang.org/ref/mod#build-commands https://golang.org/doc/go1.16 Signed-off-by: William Hubbs <williamh <AT> gentoo.org> eclass/go-module.eclass | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass index 053861a1a18..d51b8279f97 100644 --- a/eclass/go-module.eclass +++ b/eclass/go-module.eclass @@ -75,9 +75,7 @@ export GOCACHE="${T}/go-build" # The following go flags should be used for all builds. # -v prints the names of packages as they are compiled # -x prints commands as they are executed -# -mod=readonly do not update go.mod/go.sum but fail if updates are needed -# -mod=vendor use the vendor directory instead of downloading dependencies -export GOFLAGS="-v -x -mod=readonly" +export GOFLAGS="-v -x" # Do not complain about CFLAGS etc since go projects do not use them. QA_FLAGS_IGNORED='.*'