diff options
author | Hans de Graaff <graaff@gentoo.org> | 2023-07-10 08:55:17 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2023-07-10 09:36:41 +0200 |
commit | 1a7eeface6736b1d3be442b33fcdca02633354bd (patch) | |
tree | 6322dffa75bbd8422d760fdc787f7e003e88cd95 /app-crypt/age | |
parent | dev-ruby/serverengine: update HOMEPAGE (diff) | |
download | gentoo-1a7eeface6736b1d3be442b33fcdca02633354bd.tar.gz gentoo-1a7eeface6736b1d3be442b33fcdca02633354bd.tar.bz2 gentoo-1a7eeface6736b1d3be442b33fcdca02633354bd.zip |
app-crypt/age: fix tests
The -race option is no longer compatible with buildmode=pie.
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'app-crypt/age')
-rw-r--r-- | app-crypt/age/age-1.1.1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-crypt/age/age-1.1.1.ebuild b/app-crypt/age/age-1.1.1.ebuild index 38d405360142..d1a9d3c99233 100644 --- a/app-crypt/age/age-1.1.1.ebuild +++ b/app-crypt/age/age-1.1.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -23,7 +23,7 @@ src_compile() { } src_test() { - go test -race filippo.io/age/cmd/... || die + go test filippo.io/age/cmd/... || die } src_install() { |