From 63290304faf483c3b020e115ef76162a9f9c29bf Mon Sep 17 00:00:00 2001 From: Christopher Byrne Date: Fri, 15 Apr 2022 19:45:34 -0500 Subject: [PATCH] app-crypt/tpm2-openssl: Add missing || die to find Signed-off-by: Christopher Byrne --- 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 ac786eeec1..036fbb971d 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 }