Skip to content

Commit

Permalink
app-forensics/yara: don't install static libraries with FEATURES=test
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/856085
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Mario Haustein <[email protected]>
Closes: gentoo#26224
Signed-off-by: Sam James <[email protected]>
  • Loading branch information
hamarituc authored and thesamesam committed Jul 4, 2022
1 parent a38cc9e commit 400298c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app-forensics/yara/yara-4.2.0-r1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
2 changes: 1 addition & 1 deletion app-forensics/yara/yara-4.2.1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
2 changes: 1 addition & 1 deletion app-forensics/yara/yara-4.2.2.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 400298c

Please sign in to comment.