From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BC72C158020 for ; Fri, 25 Nov 2022 14:42:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02FBAE0896; Fri, 25 Nov 2022 14:42:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D8FBEE0896 for ; Fri, 25 Nov 2022 14:42:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D61A7340FA9 for ; Fri, 25 Nov 2022 14:42:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F23073B for ; Fri, 25 Nov 2022 14:42:13 +0000 (UTC) From: "罗百科" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "罗百科" Message-ID: <1669387325.4daddfa6021dcf02f3bff9919ac2d51b4dd7fb36.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/flite/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-accessibility/flite/flite-2.2.ebuild X-VCS-Directories: app-accessibility/flite/ X-VCS-Committer: patrick X-VCS-Committer-Name: 罗百科 X-VCS-Revision: 4daddfa6021dcf02f3bff9919ac2d51b4dd7fb36 X-VCS-Branch: master Date: Fri, 25 Nov 2022 14:42:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e4c2db5a-03c2-41eb-b436-e29e07733849 X-Archives-Hash: 21224ddf833cf8d1fce4a1f5570e2aef commit: 4daddfa6021dcf02f3bff9919ac2d51b4dd7fb36 Author: Patrick Lauer gentoo org> AuthorDate: Fri Nov 25 14:41:17 2022 +0000 Commit: 罗百科 gentoo org> CommitDate: Fri Nov 25 14:42:05 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4daddfa6 app-accessibility/flite: restrict src_compile to -j1 Reliably fails to build with higher parallelism. Signed-off-by: Patrick Lauer gentoo.org> app-accessibility/flite/flite-2.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-accessibility/flite/flite-2.2.ebuild b/app-accessibility/flite/flite-2.2.ebuild index cd68f7a8307f..0b4c34e70ff8 100644 --- a/app-accessibility/flite/flite-2.2.ebuild +++ b/app-accessibility/flite/flite-2.2.ebuild @@ -102,7 +102,7 @@ multilib_src_configure() { } multilib_src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" + emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}" } multilib_src_install_all() {