diff options
author | William Hubbs <williamh@gentoo.org> | 2021-07-24 16:08:37 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2021-07-24 16:09:19 -0500 |
commit | 561b7a48cda8ce76609c6e5e4378e1f4464f240d (patch) | |
tree | 61cf30c8bb4751131ef6f77d587c0b308ae4edcc /dev-lang | |
parent | dev-libs/libgudev: add 236 (diff) | |
download | gentoo-561b7a48cda8ce76609c6e5e4378e1f4464f240d.tar.gz gentoo-561b7a48cda8ce76609c6e5e4378e1f4464f240d.tar.bz2 gentoo-561b7a48cda8ce76609c6e5e4378e1f4464f240d.zip |
dev-lang/go: workaround unrecognized elf file(s) qa notices
This package generates several "unrecognized elf file(s)" notices when
it is emerged on riscv. Work around this by using the QA_PREBUILT
setting.
Bug: https://bugs.gentoo.org/794046
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/go/go-1.16.6.ebuild | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dev-lang/go/go-1.16.6.ebuild b/dev-lang/go/go-1.16.6.ebuild index 895ddad58f5e..ec547eb1359d 100644 --- a/dev-lang/go/go-1.16.6.ebuild +++ b/dev-lang/go/go-1.16.6.ebuild @@ -44,6 +44,10 @@ QA_FLAGS_IGNORED='.*' # The tools in /usr/lib/go should not cause the multilib-strict check to fail. QA_MULTILIB_PATHS="usr/lib/go/pkg/tool/.*/.*" +# This package triggers "unrecognized elf file(s)" notices on riscv. +# https://bugs.gentoo.org/794046 +QA_PREBUILT='.*' + # Do not strip this package. Stripping is unsupported upstream and may # fail. RESTRICT+=" strip" |