media-libs/netpbm: Fix test on musl

Closes: https://bugs.gentoo.org/836288
Signed-off-by: Viorel Munteanu <ceamac.paragon@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/24979
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Viorel Munteanu
2022-04-10 20:08:57 +03:00
committed by Sam James
parent cb42d10aed
commit 35a25540c8

View File

@@ -127,6 +127,11 @@ src_prepare() {
sed -i -e '/^$/d' test/legacy-names.ok || die
sed -i -e 's:png-roundtrip.*::' test/Test-Order || die
fi
# this test requires LC_ALL=en_US.iso88591, not available on musl
if use elibc_musl; then
sed -i -e 's:pbmtext-iso88591.*::' test/Test-Order || die
fi
}
src_configure() {