commit: 3042433e9ed666a993f004fad84a80f0bab8e283 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org> AuthorDate: Wed Feb 24 21:48:52 2021 +0000 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org> CommitDate: Wed Feb 24 21:48:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3042433e
sys-apps/acl: skip tests for non-native abis Closes: https://bugs.gentoo.org/772356 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org> sys-apps/acl/acl-2.2.53-r1.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sys-apps/acl/acl-2.2.53-r1.ebuild b/sys-apps/acl/acl-2.2.53-r1.ebuild index 261639dbb40..36ef9c8cb34 100644 --- a/sys-apps/acl/acl-2.2.53-r1.ebuild +++ b/sys-apps/acl/acl-2.2.53-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -41,6 +41,12 @@ multilib_src_configure() { ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } +multilib_src_test() { + # Tests call native binaries with an LD_PRELOAD wrapper + # https://bugs.gentoo.org/772356 + multilib_is_native_abi && default +} + multilib_src_install() { default
