diff options
author | Mike Gilbert <floppym@gentoo.org> | 2021-02-24 16:48:52 -0500 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2021-02-24 16:48:52 -0500 |
commit | 3042433e9ed666a993f004fad84a80f0bab8e283 (patch) | |
tree | 85dc3830543add190ba4f00b8d63db4288e4fa26 /sys-apps/acl | |
parent | dev-python/rsa: Bump to 4.7.2 (diff) | |
download | gentoo-3042433e9ed666a993f004fad84a80f0bab8e283.tar.gz gentoo-3042433e9ed666a993f004fad84a80f0bab8e283.tar.bz2 gentoo-3042433e9ed666a993f004fad84a80f0bab8e283.zip |
sys-apps/acl: skip tests for non-native abis
Closes: https://bugs.gentoo.org/772356
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'sys-apps/acl')
-rw-r--r-- | sys-apps/acl/acl-2.2.53-r1.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys-apps/acl/acl-2.2.53-r1.ebuild b/sys-apps/acl/acl-2.2.53-r1.ebuild index 261639dbb408..36ef9c8cb34a 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 |