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 9845B15817D for ; Tue, 11 Jun 2024 05:32:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CAA1E2A78; Tue, 11 Jun 2024 05:32:31 +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 6BAF9E2A78 for ; Tue, 11 Jun 2024 05:32:31 +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 65C4233BF08 for ; Tue, 11 Jun 2024 05:32:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A48A71C8D for ; Tue, 11 Jun 2024 05:32:28 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1718083791.a999b2805f728b160f95414b3aa8c7dd4d9f8acf.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/7zip/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/7zip/7zip-23.01.ebuild app-arch/7zip/7zip-24.05.ebuild app-arch/7zip/7zip-24.06.ebuild X-VCS-Directories: app-arch/7zip/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: a999b2805f728b160f95414b3aa8c7dd4d9f8acf X-VCS-Branch: master Date: Tue, 11 Jun 2024 05:32:28 +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: 2e41084e-f6a9-49b3-8947-27d0d825c850 X-Archives-Hash: 13c3cd75a6841256a754330d931b341d commit: a999b2805f728b160f95414b3aa8c7dd4d9f8acf Author: NRK disroot org> AuthorDate: Sun Jun 9 11:23:18 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Tue Jun 11 05:29:51 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a999b280 app-arch/7zip: fix makefile mkdir race Closes: https://bugs.gentoo.org/933619 Signed-off-by: NRK disroot.org> Closes: https://github.com/gentoo/gentoo/pull/37093 Signed-off-by: Arthur Zamarin gentoo.org> app-arch/7zip/7zip-23.01.ebuild | 1 + app-arch/7zip/7zip-24.05.ebuild | 1 + app-arch/7zip/7zip-24.06.ebuild | 1 + 3 files changed, 3 insertions(+) diff --git a/app-arch/7zip/7zip-23.01.ebuild b/app-arch/7zip/7zip-23.01.ebuild index 4393a0da0302..51c0b76b70b0 100644 --- a/app-arch/7zip/7zip-23.01.ebuild +++ b/app-arch/7zip/7zip-23.01.ebuild @@ -99,6 +99,7 @@ src_compile() { args+=( MY_ASM=uasm ) fi + mkdir -p "${bdir}" || die # Bug: https://bugs.gentoo.org/933619 emake ${args[@]} popd > /dev/null || die "Unable to switch directory" } diff --git a/app-arch/7zip/7zip-24.05.ebuild b/app-arch/7zip/7zip-24.05.ebuild index 4393a0da0302..51c0b76b70b0 100644 --- a/app-arch/7zip/7zip-24.05.ebuild +++ b/app-arch/7zip/7zip-24.05.ebuild @@ -99,6 +99,7 @@ src_compile() { args+=( MY_ASM=uasm ) fi + mkdir -p "${bdir}" || die # Bug: https://bugs.gentoo.org/933619 emake ${args[@]} popd > /dev/null || die "Unable to switch directory" } diff --git a/app-arch/7zip/7zip-24.06.ebuild b/app-arch/7zip/7zip-24.06.ebuild index 4c6458379962..a6bf83168b8c 100644 --- a/app-arch/7zip/7zip-24.06.ebuild +++ b/app-arch/7zip/7zip-24.06.ebuild @@ -99,6 +99,7 @@ src_compile() { args+=( MY_ASM=uasm ) fi + mkdir -p "${bdir}" || die # Bug: https://bugs.gentoo.org/933619 emake ${args[@]} popd > /dev/null || die "Unable to switch directory" }