summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2022-02-18 10:33:51 -0600
committerWilliam Hubbs <williamh@gentoo.org>2022-02-18 10:35:10 -0600
commit83f421d8ed39fc11f4ca87f95a8d707bac656f9c (patch)
tree0b4f59862c557d7872251ca154aa4c024ba7fab8 /eclass/go-module.eclass
parentdev-libs/libxmlb: Removed old (diff)
downloadgentoo-83f421d8ed39fc11f4ca87f95a8d707bac656f9c.tar.gz
gentoo-83f421d8ed39fc11f4ca87f95a8d707bac656f9c.tar.bz2
gentoo-83f421d8ed39fc11f4ca87f95a8d707bac656f9c.zip
go-module.eclass: set a default for GOMODCACHE
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'eclass/go-module.eclass')
-rw-r--r--eclass/go-module.eclass6
1 files changed, 6 insertions, 0 deletions
diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass
index 00f5169ea6e2..53f4a0269421 100644
--- a/eclass/go-module.eclass
+++ b/eclass/go-module.eclass
@@ -82,6 +82,12 @@ export GO111MODULE=on
# See "go help environment" for information on this setting
export GOCACHE="${T}/go-build"
+# Set the default for the go module cache
+# This could potentially be shared so that all go packages put the
+# modules they download in a shared location.
+# See "go help environment" for information on this setting
+export GOMODCACHE="${T}/go-mod"
+
# The following go flags should be used for all builds.
# -modcacherw makes the build cache read/write
# -v prints the names of packages as they are compiled