diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2020-11-14 21:18:43 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-11-14 21:18:43 +0100 |
commit | a9e50f23ca3d26930c3a1bd19ac1cc8afe92b804 (patch) | |
tree | d58d857bb3fc1dd3f99c9c925ba542e6ec4f7081 /dev-libs/pakchois | |
parent | dev-libs/libtubo: disable static libs (diff) | |
download | gentoo-a9e50f23ca3d26930c3a1bd19ac1cc8afe92b804.tar.gz gentoo-a9e50f23ca3d26930c3a1bd19ac1cc8afe92b804.tar.bz2 gentoo-a9e50f23ca3d26930c3a1bd19ac1cc8afe92b804.zip |
dev-libs/pakchois: disable static libs
Closes: https://bugs.gentoo.org/727050
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-libs/pakchois')
-rw-r--r-- | dev-libs/pakchois/pakchois-0.4-r2.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dev-libs/pakchois/pakchois-0.4-r2.ebuild b/dev-libs/pakchois/pakchois-0.4-r2.ebuild index fdfc232a6bfa..fed0ff842a1f 100644 --- a/dev-libs/pakchois/pakchois-0.4-r2.ebuild +++ b/dev-libs/pakchois/pakchois-0.4-r2.ebuild @@ -16,5 +16,11 @@ IUSE="nls" multilib_src_configure() { ECONF_SOURCE="${S}" econf \ - $(use_enable nls) + $(use_enable nls) \ + --disable-static +} + +multilib_src_install() { + default + find "${ED}" -name '*.la' -delete || die } |