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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C94C115806E for ; Fri, 19 May 2023 01:41:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D29D2E0876; Fri, 19 May 2023 01:41:48 +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 B3212E0876 for ; Fri, 19 May 2023 01:41:48 +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 851F6340D32 for ; Fri, 19 May 2023 01:41:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DF509A65 for ; Fri, 19 May 2023 01:41:45 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1684460474.e38deba76eb1f0c07b03ba8d99dd92f985425b5c.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/mingw64-toolchain/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/mingw64-toolchain/mingw64-toolchain-10.0.0_p1-r2.ebuild dev-util/mingw64-toolchain/mingw64-toolchain-11.0.0.ebuild X-VCS-Directories: dev-util/mingw64-toolchain/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: e38deba76eb1f0c07b03ba8d99dd92f985425b5c X-VCS-Branch: master Date: Fri, 19 May 2023 01:41:45 +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: 3d4aeaeb-9603-48e9-b44a-52b6c57b2847 X-Archives-Hash: 8599831603b7f8d539b64cfade3dbc05 commit: e38deba76eb1f0c07b03ba8d99dd92f985425b5c Author: Ionen Wolkens gentoo org> AuthorDate: Fri May 19 01:35:42 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Fri May 19 01:41:14 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e38deba7 dev-util/mingw64-toolchain: use -j1 for make install Matches the change from bug #906155. This may potentially not be affected with what it builds, but all these packages have a tendendency to be fragile in that regard and there's not much to gain from threads on install. Signed-off-by: Ionen Wolkens gentoo.org> dev-util/mingw64-toolchain/mingw64-toolchain-10.0.0_p1-r2.ebuild | 5 +++-- dev-util/mingw64-toolchain/mingw64-toolchain-11.0.0.ebuild | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-util/mingw64-toolchain/mingw64-toolchain-10.0.0_p1-r2.ebuild b/dev-util/mingw64-toolchain/mingw64-toolchain-10.0.0_p1-r2.ebuild index d3215a0ed723..82af5181e021 100644 --- a/dev-util/mingw64-toolchain/mingw64-toolchain-10.0.0_p1-r2.ebuild +++ b/dev-util/mingw64-toolchain/mingw64-toolchain-10.0.0_p1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -220,7 +220,8 @@ src_compile() { edo "${conf[@]}" emake - emake DESTDIR="${MWT_D}" install + # -j1 to match bug #906155, other packages may be fragile too + emake -j1 DESTDIR="${MWT_D}" install declare -f mwt-${id} >/dev/null && edo mwt-${id} declare -f mwt-${id}_${2} >/dev/null && edo mwt-${id}_${2} diff --git a/dev-util/mingw64-toolchain/mingw64-toolchain-11.0.0.ebuild b/dev-util/mingw64-toolchain/mingw64-toolchain-11.0.0.ebuild index 360f880e3610..c1d38e605af9 100644 --- a/dev-util/mingw64-toolchain/mingw64-toolchain-11.0.0.ebuild +++ b/dev-util/mingw64-toolchain/mingw64-toolchain-11.0.0.ebuild @@ -228,7 +228,8 @@ src_compile() { edo "${conf[@]}" emake - emake DESTDIR="${MWT_D}" install + # -j1 to match bug #906155, other packages may be fragile too + emake -j1 DESTDIR="${MWT_D}" install declare -f mwt-${id} >/dev/null && edo mwt-${id} declare -f mwt-${id}_${2} >/dev/null && edo mwt-${id}_${2}