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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 35D05159C9B for ; Wed, 31 Jul 2024 23:23:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40E53E2A2F; Wed, 31 Jul 2024 23:23:37 +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 19CC0E2A2F for ; Wed, 31 Jul 2024 23:23:36 +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 D7A0F340441 for ; Wed, 31 Jul 2024 23:23:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 422581CF5 for ; Wed, 31 Jul 2024 23:23:34 +0000 (UTC) From: "Mark Harmstone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mark Harmstone" Message-ID: <1722468194.31f1efb05f836872296b42422416f9c86b2cf6f3.mark@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-fs/fsverity-utils/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild X-VCS-Directories: sys-fs/fsverity-utils/ X-VCS-Committer: mark X-VCS-Committer-Name: Mark Harmstone X-VCS-Revision: 31f1efb05f836872296b42422416f9c86b2cf6f3 X-VCS-Branch: dev Date: Wed, 31 Jul 2024 23:23:34 +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: a301aaec-5273-403f-8753-ca699a5afe19 X-Archives-Hash: 5b9caa2bfa20e87a047a4b5b57b7daaf commit: 31f1efb05f836872296b42422416f9c86b2cf6f3 Author: Mark Harmstone harmstone com> AuthorDate: Wed Jul 31 23:23:14 2024 +0000 Commit: Mark Harmstone harmstone com> CommitDate: Wed Jul 31 23:23:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=31f1efb0 sys-fs/fsverity-utils: die if can't remove libfsverity.a Signed-off-by: Mark Harmstone harmstone.com> sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild b/sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild index f76f7a44c..d2a777437 100644 --- a/sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild +++ b/sys-fs/fsverity-utils/fsverity-utils-1.6.ebuild @@ -35,6 +35,6 @@ src_install() { PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" if ! use static-libs ; then - rm "${ED}/usr/$(get_libdir)/libfsverity.a" + rm "${ED}/usr/$(get_libdir)/libfsverity.a" || die fi }