diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2023-11-28 14:07:58 -0500 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-11-29 04:09:00 +0000 |
commit | 02f8a1e85e899ded8c1b150232eb780a3adb49ae (patch) | |
tree | 11b1dc2f1283eb5022c551a11f8233617cc1fc47 /app-accessibility | |
parent | sys-kernel/gentoo-kernel-bin: Bump to 5.10.202 (diff) | |
download | gentoo-02f8a1e85e899ded8c1b150232eb780a3adb49ae.tar.gz gentoo-02f8a1e85e899ded8c1b150232eb780a3adb49ae.tar.bz2 gentoo-02f8a1e85e899ded8c1b150232eb780a3adb49ae.zip |
app-accessibility/brltty: fix building python bindings too many times
Although --disable-python-bindings was used in the main build, to defer
building them for the python_foreach, the original use_enable was never
removed. So the python bindings if enabled at all, would always build
twice or more: once for python3, and once for each USE-enabled impl. The
python3 version might not actually work due to dependencies, so the
build might fail. If it did work by *coincidence*, it would be for
whatever the default python-exec is, which may not be what is in
PYTHON_TARGETS.
Bug: https://bugs.gentoo.org/905695
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-accessibility')
-rw-r--r-- | app-accessibility/brltty/brltty-6.6-r1.ebuild (renamed from app-accessibility/brltty/brltty-6.6.ebuild) | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app-accessibility/brltty/brltty-6.6.ebuild b/app-accessibility/brltty/brltty-6.6-r1.ebuild index 87ccfd5baaa9..0588c791af36 100644 --- a/app-accessibility/brltty/brltty-6.6.ebuild +++ b/app-accessibility/brltty/brltty-6.6-r1.ebuild @@ -135,7 +135,6 @@ src_configure() { $(use_enable ocaml ocaml-bindings) $(use_with pcm pcm-package) $(use_enable policykit polkit) - $(use_enable python python-bindings) $(use_enable speech speech-support) $(use_with systemd service-package) $(use_enable tcl tcl-bindings) |