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 2C631158083 for ; Thu, 5 Sep 2024 14:42:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F8E5E2A2C; Thu, 5 Sep 2024 14:42:55 +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 24781E2A2C for ; Thu, 5 Sep 2024 14:42:55 +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 2B441342F64 for ; Thu, 5 Sep 2024 14:42:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 812521F36 for ; Thu, 5 Sep 2024 14:42:52 +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: <1725547320.b28b765a56f848bccd25057856a9f4420123b664.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/runit/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/runit/runit-2.1.2-r5.ebuild X-VCS-Directories: sys-process/runit/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: b28b765a56f848bccd25057856a9f4420123b664 X-VCS-Branch: master Date: Thu, 5 Sep 2024 14:42:52 +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: 0905c280-16d9-4eb8-bed1-5eb8e1bf3fd5 X-Archives-Hash: 4706482c53c3bf14f2133ddd704018db commit: b28b765a56f848bccd25057856a9f4420123b664 Author: Mike Gilbert gentoo org> AuthorDate: Thu Sep 5 14:42:00 2024 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Thu Sep 5 14:42:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b28b765a sys-process/runit: add || die and adjust whitespace Signed-off-by: Mike Gilbert gentoo.org> sys-process/runit/runit-2.1.2-r5.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sys-process/runit/runit-2.1.2-r5.ebuild b/sys-process/runit/runit-2.1.2-r5.ebuild index c64c0578d5e9..8d6056f4ffba 100644 --- a/sys-process/runit/runit-2.1.2-r5.ebuild +++ b/sys-process/runit/runit-2.1.2-r5.ebuild @@ -28,11 +28,10 @@ src_unpack() { src_prepare() { default - cd "${S}"/.. - eapply -p3 "${WORKDIR}"/patches - - cd "${S}" + cd "${S}"/.. || die + eapply -p3 "${WORKDIR}"/patches + cd "${S}" || die # We either build everything or nothing static sed -i -e 's:-static: :' Makefile || die