commit: 02ffe3da656eb5932316599e75fbfab30049db38
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 29 22:22:10 2022 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sat Jan 29 22:22:28 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02ffe3da
app-accessibility/brltty: deactivate parallel make for all emake calls
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
app-accessibility/brltty/brltty-6.4.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/app-accessibility/brltty/brltty-6.4.ebuild
b/app-accessibility/brltty/brltty-6.4.ebuild
index e5a7f0d48519..f96e01f92f91 100644
--- a/app-accessibility/brltty/brltty-6.4.ebuild
+++ b/app-accessibility/brltty/brltty-6.4.ebuild
@@ -152,7 +152,7 @@ src_compile() {
if use python; then
python_build() {
cd "Bindings/Python" || die
- emake
+ emake -j1
}
python_foreach_impl run_in_build_dir python_build
fi
@@ -163,12 +163,12 @@ src_install() {
findlib_src_preinst
fi
- emake INSTALL_ROOT="${D}" OCAML_LDCONF= install
+ emake -j1 INSTALL_ROOT="${D}" OCAML_LDCONF= install
if use python; then
python_install() {
cd "Bindings/Python" || die
- emake INSTALL_ROOT="${D}" install
+ emake -j1 INSTALL_ROOT="${D}" install
}
python_foreach_impl run_in_build_dir python_install
fi