remove .la files before installing

This commit is contained in:
Volker Wegert 2022-12-02 21:22:23 +01:00
parent 8c2e214d25
commit 8d2f7557a0
No known key found for this signature in database
GPG key ID: 1BCEC13D2F171EC4
2 changed files with 14 additions and 2 deletions

View file

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

View file

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