commit: 5babc055de0ec9084d08ec54e732d0fee9ac935a Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org> AuthorDate: Fri May 31 20:11:31 2024 +0000 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org> CommitDate: Fri May 31 20:12:01 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5babc055
dev-ml/ocamlbuild: QA_TEXTRELS Closes: https://bugs.gentoo.org/928109 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org> dev-ml/ocamlbuild/ocamlbuild-0.14.2.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-ml/ocamlbuild/ocamlbuild-0.14.2.ebuild b/dev-ml/ocamlbuild/ocamlbuild-0.14.2.ebuild index 5f09bae5b202..b3b5fb33ae0c 100644 --- a/dev-ml/ocamlbuild/ocamlbuild-0.14.2.ebuild +++ b/dev-ml/ocamlbuild/ocamlbuild-0.14.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -42,6 +42,10 @@ src_compile() { } src_install() { + # OCaml generates textrels on 32-bit arches + if use arm || use ppc || use x86 ; then + export QA_TEXTRELS='.*' + fi emake CHECK_IF_PREINSTALLED=false DESTDIR="${D}" install dodoc Changes }
