From 400298c4db1d19f1d1bdcdfdcbca688563c29a02 Mon Sep 17 00:00:00 2001 From: Mario Haustein Date: Mon, 4 Jul 2022 21:44:34 +0200 Subject: app-forensics/yara: don't install static libraries with FEATURES=test Closes: https://bugs.gentoo.org/856085 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Mario Haustein Closes: https://github.com/gentoo/gentoo/pull/26224 Signed-off-by: Sam James --- app-forensics/yara/yara-4.2.0-r1.ebuild | 2 +- app-forensics/yara/yara-4.2.1.ebuild | 2 +- app-forensics/yara/yara-4.2.2.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app-forensics/yara/yara-4.2.0-r1.ebuild b/app-forensics/yara/yara-4.2.0-r1.ebuild index 55e7f11069d5..a4761519106a 100644 --- a/app-forensics/yara/yara-4.2.0-r1.ebuild +++ b/app-forensics/yara/yara-4.2.0-r1.ebuild @@ -53,5 +53,5 @@ src_install() { # TODO: Allow tests to work against dyn. lib rather than building # statically just for tests. - find "${ED}" -name '*.a' -o -name '*.la' -delete || die + find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die } diff --git a/app-forensics/yara/yara-4.2.1.ebuild b/app-forensics/yara/yara-4.2.1.ebuild index 55e7f11069d5..a4761519106a 100644 --- a/app-forensics/yara/yara-4.2.1.ebuild +++ b/app-forensics/yara/yara-4.2.1.ebuild @@ -53,5 +53,5 @@ src_install() { # TODO: Allow tests to work against dyn. lib rather than building # statically just for tests. - find "${ED}" -name '*.a' -o -name '*.la' -delete || die + find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die } diff --git a/app-forensics/yara/yara-4.2.2.ebuild b/app-forensics/yara/yara-4.2.2.ebuild index 6370d398ea67..cf8905b87957 100644 --- a/app-forensics/yara/yara-4.2.2.ebuild +++ b/app-forensics/yara/yara-4.2.2.ebuild @@ -53,5 +53,5 @@ src_install() { # TODO: Allow tests to work against dyn. lib rather than building # statically just for tests. - find "${ED}" -name '*.a' -o -name '*.la' -delete || die + find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die } -- cgit v1.2.3-65-gdbad