diff options
author | Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org> | 2019-09-01 05:02:38 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-04-02 07:29:38 +0100 |
commit | 02d38c549998b3416f1242c58c44f2800b2eccb7 (patch) | |
tree | 73b5d2358d5e83dec3498dd2fbb4c92427d81764 /sys-libs/libunwind | |
parent | sys-libs/libunwind: Delete obsolete code. (diff) | |
download | gentoo-02d38c549998b3416f1242c58c44f2800b2eccb7.tar.gz gentoo-02d38c549998b3416f1242c58c44f2800b2eccb7.tar.bz2 gentoo-02d38c549998b3416f1242c58c44f2800b2eccb7.zip |
sys-libs/libunwind: Unconditionally drop *.la files.
*.pc files are installed.
Closes: https://bugs.gentoo.org/693250
Signed-off-by: Arfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'sys-libs/libunwind')
-rw-r--r-- | sys-libs/libunwind/libunwind-1.4.0.ebuild | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys-libs/libunwind/libunwind-1.4.0.ebuild b/sys-libs/libunwind/libunwind-1.4.0.ebuild index 9ca0fb123dc4..00f1da151747 100644 --- a/sys-libs/libunwind/libunwind-1.4.0.ebuild +++ b/sys-libs/libunwind/libunwind-1.4.0.ebuild @@ -97,7 +97,6 @@ multilib_src_test() { SANDBOX_ON=0 emake check } -multilib_src_install() { - default - use static-libs || find "${ED}"/usr -name 'libunwind*.la' -delete +multilib_src_install_all() { + find "${D}" -name "*.la" -type f -delete || die } |