commit: 400298c4db1d19f1d1bdcdfdcbca688563c29a02 Author: Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de> AuthorDate: Mon Jul 4 19:44:34 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Jul 4 23:23:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=400298c4
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 <mario.haustein <AT> hrz.tu-chemnitz.de> Closes: https://github.com/gentoo/gentoo/pull/26224 Signed-off-by: Sam James <sam <AT> gentoo.org> 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 }
