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 70E6E158064 for ; Tue, 7 May 2024 17:54:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B5102BC01B; Tue, 7 May 2024 17:54:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 43BFE2BC01B for ; Tue, 7 May 2024 17:54:16 +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 790783430F0 for ; Tue, 7 May 2024 17:54:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7005194B for ; Tue, 7 May 2024 17:54:13 +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: <1715104423.f673754fd441777a2d68597d5fdab3a7c586d474.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/xfsprogs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/xfsprogs/xfsprogs-6.7.0-r1.ebuild X-VCS-Directories: sys-fs/xfsprogs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f673754fd441777a2d68597d5fdab3a7c586d474 X-VCS-Branch: master Date: Tue, 7 May 2024 17:54: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: 70f7a527-3e84-481f-a07a-7aceff8ba10a X-Archives-Hash: 15fbc1563a76cc84072977a4cb1bf301 commit: f673754fd441777a2d68597d5fdab3a7c586d474 Author: Sam James gentoo org> AuthorDate: Tue May 7 17:53:43 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 7 17:53:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f673754f sys-fs/xfsprogs: go back to split call in src_install There's a race in the install-dev target. Signed-off-by: Sam James gentoo.org> sys-fs/xfsprogs/xfsprogs-6.7.0-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys-fs/xfsprogs/xfsprogs-6.7.0-r1.ebuild b/sys-fs/xfsprogs/xfsprogs-6.7.0-r1.ebuild index b31ed1ddf7ab..d748990bfbd3 100644 --- a/sys-fs/xfsprogs/xfsprogs-6.7.0-r1.ebuild +++ b/sys-fs/xfsprogs/xfsprogs-6.7.0-r1.ebuild @@ -89,5 +89,7 @@ src_compile() { } src_install() { - emake DIST_ROOT="${ED}" HAVE_ZIPPED_MANPAGES=false install install-dev + # XXX: There's a missing dep in the install-dev target, so split it + emake DIST_ROOT="${ED}" HAVE_ZIPPED_MANPAGES=false install + emake DIST_ROOT="${ED}" HAVE_ZIPPED_MANPAGES=false install-dev }