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 EED5815806E for ; Fri, 19 May 2023 22:29:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1FAA9E083E; Fri, 19 May 2023 22:29:35 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0AC92E083E for ; Fri, 19 May 2023 22:29:34 +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 2172B340D8B for ; Fri, 19 May 2023 22:29:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6AAA3990 for ; Fri, 19 May 2023 22:29:31 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1684535159.4eec5b99e9529e5ef0437b60da6aa1fcebb88c4a.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/util-linux/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/util-linux/util-linux-2.39-r1.ebuild sys-apps/util-linux/util-linux-2.39.ebuild sys-apps/util-linux/util-linux-9999.ebuild X-VCS-Directories: sys-apps/util-linux/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 4eec5b99e9529e5ef0437b60da6aa1fcebb88c4a X-VCS-Branch: master Date: Fri, 19 May 2023 22:29:31 +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: 8fe57fff-dcf3-49d1-aede-0ea108faef77 X-Archives-Hash: a87f9b458583d24053996fb94dbfaeea commit: 4eec5b99e9529e5ef0437b60da6aa1fcebb88c4a Author: Mike Gilbert gentoo org> AuthorDate: Fri May 19 22:23:43 2023 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri May 19 22:25:59 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eec5b99 sys-apps/util-linux: pass --runstatedir=/run to configure This path is used in a few places. Previously this got defaulted to /var/lib/run because econf sets localstatedir to /var/lib. Closes: https://github.com/gentoo/gentoo/pull/30870 Signed-off-by: Mike Gilbert gentoo.org> .../util-linux/{util-linux-2.39.ebuild => util-linux-2.39-r1.ebuild} | 2 ++ sys-apps/util-linux/util-linux-9999.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/sys-apps/util-linux/util-linux-2.39.ebuild b/sys-apps/util-linux/util-linux-2.39-r1.ebuild similarity index 99% rename from sys-apps/util-linux/util-linux-2.39.ebuild rename to sys-apps/util-linux/util-linux-2.39-r1.ebuild index 209689b06193..f58e55eaff9f 100644 --- a/sys-apps/util-linux/util-linux-2.39.ebuild +++ b/sys-apps/util-linux/util-linux-2.39-r1.ebuild @@ -202,6 +202,8 @@ multilib_src_configure() { # configure args shared by python and non-python builds local commonargs=( + --localstatedir="${EPREFIX}/var" + --runstatedir="${EPREFIX}/run" --enable-fs-paths-extra="${EPREFIX}/usr/sbin:${EPREFIX}/bin:${EPREFIX}/usr/bin" ) diff --git a/sys-apps/util-linux/util-linux-9999.ebuild b/sys-apps/util-linux/util-linux-9999.ebuild index 209689b06193..f58e55eaff9f 100644 --- a/sys-apps/util-linux/util-linux-9999.ebuild +++ b/sys-apps/util-linux/util-linux-9999.ebuild @@ -202,6 +202,8 @@ multilib_src_configure() { # configure args shared by python and non-python builds local commonargs=( + --localstatedir="${EPREFIX}/var" + --runstatedir="${EPREFIX}/run" --enable-fs-paths-extra="${EPREFIX}/usr/sbin:${EPREFIX}/bin:${EPREFIX}/usr/bin" )