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 2A058158041 for ; Mon, 26 Feb 2024 21:27:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5AFABE29CF; Mon, 26 Feb 2024 21:27:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 3B340E29CF for ; Mon, 26 Feb 2024 21:27:09 +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 697CC33BE91 for ; Mon, 26 Feb 2024 21:27:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D370514DE for ; Mon, 26 Feb 2024 21:27:06 +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: <1708982806.657d6906141acef288fa31c5ffcc9641795a7337.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/sysvinit/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/sysvinit/sysvinit-3.08.ebuild X-VCS-Directories: sys-apps/sysvinit/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 657d6906141acef288fa31c5ffcc9641795a7337 X-VCS-Branch: master Date: Mon, 26 Feb 2024 21:27:06 +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: 3ab394e8-40b1-444f-91d2-e32297c4fbc8 X-Archives-Hash: 2c61e0a4dbd30ab9b726d84e06a247f2 commit: 657d6906141acef288fa31c5ffcc9641795a7337 Author: Mike Gilbert gentoo org> AuthorDate: Mon Feb 26 21:23:28 2024 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Feb 26 21:26:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=657d6906 sys-apps/sysvinit: fix install with EPREFIX set Closes: https://bugs.gentoo.org/925554 Signed-off-by: Mike Gilbert gentoo.org> sys-apps/sysvinit/sysvinit-3.08.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-apps/sysvinit/sysvinit-3.08.ebuild b/sys-apps/sysvinit/sysvinit-3.08.ebuild index f5abf9ccf170..e0191c1ef4c4 100644 --- a/sys-apps/sysvinit/sysvinit-3.08.ebuild +++ b/sys-apps/sysvinit/sysvinit-3.08.ebuild @@ -141,7 +141,7 @@ src_compile() { } src_install() { - emake -C src install ROOT="${D}" + emake -C src install ROOT="${ED}" dodoc README doc/* insinto /etc @@ -173,7 +173,7 @@ pkg_postinst() { # Reload init to fix unmounting problems of / on next reboot. # This is really needed, as without the new version of init cause init # not to quit properly on reboot, and causes a fsck of / on next reboot. - if [[ -z ${ROOT} ]] ; then + if [[ -z ${EROOT} ]] ; then if [[ -e /dev/initctl ]] && [[ ! -e /run/initctl ]] ; then ln -s /dev/initctl /run/initctl \ || ewarn "Failed to set /run/initctl symlink!"