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 07C0D158099 for ; Sun, 26 Nov 2023 23:29:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E0352BC016; Sun, 26 Nov 2023 23:29:56 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 32F702BC016 for ; Sun, 26 Nov 2023 23:29:56 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 49429340A12 for ; Sun, 26 Nov 2023 23:29:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D71BF12A2 for ; Sun, 26 Nov 2023 23:29:53 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1701041380.1119f45815ecb1fceff20eea1cb7e5cb8d7ea767.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/lvm2/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/lvm2/lvm2-2.03.22-r2.ebuild X-VCS-Directories: sys-fs/lvm2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1119f45815ecb1fceff20eea1cb7e5cb8d7ea767 X-VCS-Branch: master Date: Sun, 26 Nov 2023 23:29:53 +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: b7f9dbd0-3c22-4479-9405-a5112935faa3 X-Archives-Hash: 023f6ffe529922acad9c98ffa1c4364b commit: 1119f45815ecb1fceff20eea1cb7e5cb8d7ea767 Author: Sam James gentoo org> AuthorDate: Sun Nov 26 23:29:09 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Nov 26 23:29:40 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1119f458 sys-fs/lvm2: -j1 for install There's a race with installing dmsetup where it gets re-created in the image which breaks things. It's awkward to fix because of the upstream Makefile layout. Just serialise the install part which shouldn't be a big deal anyway. Closes: https://bugs.gentoo.org/918125 Signed-off-by: Sam James gentoo.org> sys-fs/lvm2/lvm2-2.03.22-r2.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys-fs/lvm2/lvm2-2.03.22-r2.ebuild b/sys-fs/lvm2/lvm2-2.03.22-r2.ebuild index ba546b95e777..e3d8382e2044 100644 --- a/sys-fs/lvm2/lvm2-2.03.22-r2.ebuild +++ b/sys-fs/lvm2/lvm2-2.03.22-r2.ebuild @@ -204,7 +204,9 @@ src_install() { else targets+=( install_device-mapper ) fi - emake V=1 DESTDIR="${D}" "${targets[@]}" + + # -j1 for bug #918125 + emake -j1 V=1 DESTDIR="${D}" "${targets[@]}" newinitd "${FILESDIR}"/device-mapper.rc-r3 device-mapper newconfd "${FILESDIR}"/device-mapper.conf-r4 device-mapper