summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-01-20 23:09:40 +0000
committerSam James <sam@gentoo.org>2023-01-20 23:09:40 +0000
commit156c19492867660e906b3d4c79bece66fb102b78 (patch)
treeacb48ddd973a2d7288a569ee98f4518d6a72dbc1 /eclass/go-module.eclass
parentwww-client/qutebrowser: adjust 3.0.0_pre9999 ebuild (diff)
downloadgentoo-156c19492867660e906b3d4c79bece66fb102b78.tar.gz
gentoo-156c19492867660e906b3d4c79bece66fb102b78.tar.bz2
gentoo-156c19492867660e906b3d4c79bece66fb102b78.zip
go-module.eclass: fix typo in buildmode
Fixes: f4dade77c0882aab06f35f8db1154d0a52f0ba1b Bug: https://bugs.gentoo.org/702598 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/go-module.eclass')
-rw-r--r--eclass/go-module.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass
index 6b1038f46d31..08e9f267d0af 100644
--- a/eclass/go-module.eclass
+++ b/eclass/go-module.eclass
@@ -100,7 +100,7 @@ export GOMODCACHE="${WORKDIR}/go-mod"
# -modcacherw makes the build cache read/write
# -v prints the names of packages as they are compiled
# -x prints commands as they are executed
-export GOFLAGS="-buildmod=pie -buildvcs=false -modcacherw -v -x"
+export GOFLAGS="-buildmode=pie -buildvcs=false -modcacherw -v -x"
# Do not complain about CFLAGS etc since go projects do not use them.
QA_FLAGS_IGNORED='.*'