On 9/16/19 7:17 AM, William Hubbs wrote: > +BDEPEND=">=dev-lang/go-1.12" > + > +# The following go flags should be used for all go builds. > +# -mod=vendor stopps downloading of dependencies from the internet. > +# -v prints the names of packages as they are compiled > +# -x prints commands as they are executed > +export GOFLAGS="-mod=vendor -v -x" My experience with g-1.12.x was that you have to export GO111MODULE=on or else GOFLAGS="-mod=vendor" triggers an error like this: build flag -mod=vendor only valid when using modules -- Thanks, Zac