From: William Hubbs Date: Fri, 6 Mar 2020 15:16:22 +0000 (-0600) Subject: go-module.eclass: remove the -mod readonly switch from go get X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=38e62628c1da110135ac151fece76ee4d663ba7c;p=gentoo.git go-module.eclass: remove the -mod readonly switch from go get This is not valid in go 1.14, and according to their release notes was ignored or caused the build to fail. Signed-off-by: William Hubbs --- diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass index 68a72d12e1bd..08c123873c47 100644 --- a/eclass/go-module.eclass +++ b/eclass/go-module.eclass @@ -394,12 +394,10 @@ _go-module_src_unpack_verify_gosum() { # 'go mod tidy' && 'go get' will flag it. # -v = verbose # -d = download only, don't install - # -mod readonly = treat modules as readonly source einfo "Verifying linked Golang modules" go get \ -v \ -d \ - -mod readonly \ all \ || die "Some module is missing, update EGO_SUM" }