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 33C7415800F for ; Mon, 2 Jan 2023 18:42:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FEEFE0867; Mon, 2 Jan 2023 18:42:57 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 6046BE0867 for ; Mon, 2 Jan 2023 18:42:57 +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 78F99335D36 for ; Mon, 2 Jan 2023 18:42:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5B7972B for ; Mon, 2 Jan 2023 18:42:54 +0000 (UTC) From: "Matthias Maier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" Message-ID: <1672684970.611d86f7df9ed465e8a98fd8000876bab2768f55.tamiko@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/mumps/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/mumps/mumps-5.3.5-r1.ebuild X-VCS-Directories: sci-libs/mumps/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: 611d86f7df9ed465e8a98fd8000876bab2768f55 X-VCS-Branch: master Date: Mon, 2 Jan 2023 18:42:54 +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: c39046ac-2693-4525-8caf-d16a5b276d3f X-Archives-Hash: 8185fc4266f58ff63c08b41f3e3342f7 commit: 611d86f7df9ed465e8a98fd8000876bab2768f55 Author: Matthias Maier gentoo org> AuthorDate: Mon Jan 2 18:42:27 2023 +0000 Commit: Matthias Maier gentoo org> CommitDate: Mon Jan 2 18:42:50 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=611d86f7 sci-libs/mumps: avoid a race condition Closes: https://bugs.gentoo.org/889072 Signed-off-by: Matthias Maier gentoo.org> sci-libs/mumps/mumps-5.3.5-r1.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sci-libs/mumps/mumps-5.3.5-r1.ebuild b/sci-libs/mumps/mumps-5.3.5-r1.ebuild index 76020a68524a..7afc88c08537 100644 --- a/sci-libs/mumps/mumps-5.3.5-r1.ebuild +++ b/sci-libs/mumps/mumps-5.3.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -145,7 +145,8 @@ src_compile() { # Workaround #462602 export FAKEROOTKEY=1 - emake alllib PIC="-fPIC" + # Use "-j1" to avoid a spurious race condition + emake -j1 alllib PIC="-fPIC" if ! use mpi; then #$(tc-getAR) crs lib/libmumps_common.a libseq/*.o || die LIBADD+=" -Llibseq -lmpiseq"