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 5989A15808B for ; Sat, 16 Apr 2022 00:47:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62D3AE0961; Sat, 16 Apr 2022 00:47:56 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 97915E0961 for ; Sat, 16 Apr 2022 00:47:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 398273420DD for ; Sat, 16 Apr 2022 00:47:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 747CE398 for ; Sat, 16 Apr 2022 00:47:52 +0000 (UTC) From: "Christopher Byrne" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christopher Byrne" Message-ID: <1650070060.63290304faf483c3b020e115ef76162a9f9c29bf.salah.coronya@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-crypt/tpm2-openssl/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-crypt/tpm2-openssl/tpm2-openssl-1.1.0.ebuild X-VCS-Directories: app-crypt/tpm2-openssl/ X-VCS-Committer: salah.coronya X-VCS-Committer-Name: Christopher Byrne X-VCS-Revision: 63290304faf483c3b020e115ef76162a9f9c29bf X-VCS-Branch: dev Date: Sat, 16 Apr 2022 00:47: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: f2ad9794-bf31-47cd-9d5b-e8098d72fe29 X-Archives-Hash: a56f7576dec9aff44185d9b885d7ea6a commit: 63290304faf483c3b020e115ef76162a9f9c29bf Author: Christopher Byrne gmail com> AuthorDate: Sat Apr 16 00:45:34 2022 +0000 Commit: Christopher Byrne gmail com> CommitDate: Sat Apr 16 00:47:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=63290304 app-crypt/tpm2-openssl: Add missing || die to find Signed-off-by: Christopher Byrne gmail.com> app-crypt/tpm2-openssl/tpm2-openssl-1.1.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-crypt/tpm2-openssl/tpm2-openssl-1.1.0.ebuild b/app-crypt/tpm2-openssl/tpm2-openssl-1.1.0.ebuild index ac786eeec..036fbb971 100644 --- a/app-crypt/tpm2-openssl/tpm2-openssl-1.1.0.ebuild +++ b/app-crypt/tpm2-openssl/tpm2-openssl-1.1.0.ebuild @@ -36,7 +36,7 @@ src_prepare() { src_install() { default - find ${ED} -iname \*.la -delete + find ${ED} -iname \*.la -delete || die # No libtool files are install, so nothing to check for bug #833887 }