diff options
author | 2024-06-04 20:05:47 +0200 | |
---|---|---|
committer | 2024-06-04 20:24:58 +0200 | |
commit | d14bd55fc6241d005ce0baa4c6c3ad1f1eaeace4 (patch) | |
tree | 58450f7ae8540f6dabffb38088c66a21bcc07549 /sci-mathematics/cubicle | |
parent | dev-util/ccls: Stabilize 0.20240202 amd64, #933539 (diff) | |
download | gentoo-d14bd55fc6241d005ce0baa4c6c3ad1f1eaeace4.tar.gz gentoo-d14bd55fc6241d005ce0baa4c6c3ad1f1eaeace4.tar.bz2 gentoo-d14bd55fc6241d005ce0baa4c6c3ad1f1eaeace4.zip |
sci-mathematics/cubicle: ignore TEXTRELS
Closes: https://bugs.gentoo.org/928102
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'sci-mathematics/cubicle')
-rw-r--r-- | sci-mathematics/cubicle/cubicle-1.2.0-r2.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sci-mathematics/cubicle/cubicle-1.2.0-r2.ebuild b/sci-mathematics/cubicle/cubicle-1.2.0-r2.ebuild index 756eb6aab056..f7887394c08b 100644 --- a/sci-mathematics/cubicle/cubicle-1.2.0-r2.ebuild +++ b/sci-mathematics/cubicle/cubicle-1.2.0-r2.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 @@ -51,6 +51,10 @@ src_compile() { } src_install() { + # OCaml generates textrels on 32-bit arches + if use x86 ; then + export QA_TEXTRELS='.*' + fi default doman doc/${PN}.1 |