commit: 015523e165bd8df865bd7708590236a610d026ec Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr> AuthorDate: Mon Aug 31 09:45:26 2020 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Tue Sep 29 10:26:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=015523e1
net-misc/seafile: do not install .a files Closes: https://bugs.gentoo.org/739710 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr> Closes: https://github.com/gentoo/gentoo/pull/17344 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> net-misc/seafile/seafile-7.0.5-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/seafile/seafile-7.0.5-r1.ebuild b/net-misc/seafile/seafile-7.0.5-r1.ebuild index 10233ae8ba1..7b2a3788f56 100644 --- a/net-misc/seafile/seafile-7.0.5-r1.ebuild +++ b/net-misc/seafile/seafile-7.0.5-r1.ebuild @@ -40,7 +40,7 @@ src_prepare() { src_install() { default - # Remove unnecessary .la files, as recommended by ltprune.eclass - find "${ED}" -name '*.la' -delete || die + # Remove unnecessary files, as recommended by ltprune.eclass + find "${ED}" -name '*.la' -o -name '*.a' -delete || die python_fix_shebang "${ED}"/usr/bin }
