remove .la files before installing

This commit is contained in:
Volker Wegert 2022-12-02 21:19:38 +01:00
parent a751dc8579
commit c68eebd60c
No known key found for this signature in database
GPG key ID: 1BCEC13D2F171EC4

View file

@ -58,3 +58,9 @@ src_configure() {
$(use_enable threads multi-threading-support) \
}
src_install() {
default
# see https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0303
find "${ED}" -name '*.la' -delete || die
}