From d7a1fee2e71ffdccc1956a996d24fc2675a926a5 Mon Sep 17 00:00:00 2001 From: Alfredo Tupone Date: Thu, 1 Aug 2024 20:26:58 +0200 Subject: [PATCH] net-misc/unison: ignore TextRel on 32 bits Closes: https://bugs.gentoo.org/926546 Signed-off-by: Alfredo Tupone --- net-misc/unison/unison-2.53.5-r1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/net-misc/unison/unison-2.53.5-r1.ebuild b/net-misc/unison/unison-2.53.5-r1.ebuild index d1619282f0603..2c3522204b35a 100644 --- a/net-misc/unison/unison-2.53.5-r1.ebuild +++ b/net-misc/unison/unison-2.53.5-r1.ebuild @@ -86,6 +86,11 @@ src_test() { } src_install() { + # OCaml generates textrels on 32-bit arches + if use arm || use ppc || use x86 ; then + export QA_TEXTRELS='.*' + fi + # install manually, since it's just too much # work to force the Makefile to do the right thing. cd "${S}/src" || die