diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2022-05-23 20:51:35 +0200 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2022-05-23 20:51:51 +0200 |
commit | 9070d23f2a68b615a79681e8bcd8785c7e5e5755 (patch) | |
tree | 0adb3b8ca87823bd8fce985232aad815a6a22c02 /sys-apps | |
parent | media-gfx/bonzomatic: Remove broken USE=system-kissfft (diff) | |
download | guru-9070d23f2a68b615a79681e8bcd8785c7e5e5755.tar.gz guru-9070d23f2a68b615a79681e8bcd8785c7e5e5755.tar.bz2 guru-9070d23f2a68b615a79681e8bcd8785c7e5e5755.zip |
sys-apps/sdate: Remove static lib and libtool *.la
Fixes: https://bugs.gentoo.org/840637
Fixes: https://bugs.gentoo.org/840634
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/sdate/sdate-0.7.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys-apps/sdate/sdate-0.7.ebuild b/sys-apps/sdate/sdate-0.7.ebuild index b862defc3..8810cbdb1 100644 --- a/sys-apps/sdate/sdate-0.7.ebuild +++ b/sys-apps/sdate/sdate-0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 2021 Gentoo Authors +# Copyright 2021-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -17,3 +17,9 @@ src_prepare() { default eautoreconf } + +src_install() { + default + find "${ED}" -name '*.la' -delete || die + find "${ED}" -name '*.a' -delete || die +} |