remove .la files before installing

This commit is contained in:
Volker Wegert 2022-12-02 21:07:43 +01:00
parent df0bc033c4
commit 974e6b5262
No known key found for this signature in database
GPG key ID: 1BCEC13D2F171EC4
2 changed files with 12 additions and 0 deletions

View file

@ -87,3 +87,9 @@ src_test() {
ewarn "This is due to a long-running test named test_glob.sh that may take a minute to complete."
default_src_test
}
src_install() {
default
# see https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0303
find "${ED}" -name '*.la' -delete || die
}

View file

@ -87,3 +87,9 @@ src_test() {
ewarn "This is due to a long-running test named test_glob.sh that may take a minute to complete."
default_src_test
}
src_install() {
default
# see https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0303
find "${ED}" -name '*.la' -delete || die
}