diff options
author | Sam James <sam@gentoo.org> | 2025-01-03 12:52:12 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2025-01-03 12:52:12 +0000 |
commit | 0ff212c8c789d4adcb21894448cbd7985c576de1 (patch) | |
tree | ea335d0157aef9b7411e3b5ad57e42aaa839b9db /app-arch | |
parent | dev-cpp/ms-gsl: Stabilize 4.1.0 ppc, #947379 (diff) | |
download | gentoo-0ff212c8c789d4adcb21894448cbd7985c576de1.tar.gz gentoo-0ff212c8c789d4adcb21894448cbd7985c576de1.tar.bz2 gentoo-0ff212c8c789d4adcb21894448cbd7985c576de1.zip |
app-arch/bzip2: fix src_test
* Actually test the just-built DSO
* ... as a consequence, fix tests for ABI_X86="32" with tests where
ABI_X86="32" was not previously enabled
Closes: https://bugs.gentoo.org/926553
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/bzip2/bzip2-1.0.8-r5.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app-arch/bzip2/bzip2-1.0.8-r5.ebuild b/app-arch/bzip2/bzip2-1.0.8-r5.ebuild index 45efadcfce0d..51f64021ee9a 100644 --- a/app-arch/bzip2/bzip2-1.0.8-r5.ebuild +++ b/app-arch/bzip2/bzip2-1.0.8-r5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # XXX: atm, libbz2.a is always PIC :(, so it is always built quickly @@ -70,6 +70,7 @@ multilib_src_compile() { multilib_src_test() { cp "${S}"/sample* "${BUILD_DIR}" || die + ln -s libbz2.so.1.0 libbz2.so.1 || die bemake -f "${S}"/Makefile check } |