diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2021-05-31 11:19:09 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-05-31 11:19:09 +0200 |
commit | 2aeb28a023770d6921c8d7fde02c7d1056252793 (patch) | |
tree | 4966999e768c918e0efb9c1ad89382a332e7e023 /sci-astronomy | |
parent | sci-astronomy/cpl: drop deprecated ltprune eclass (diff) | |
download | gentoo-2aeb28a023770d6921c8d7fde02c7d1056252793.tar.gz gentoo-2aeb28a023770d6921c8d7fde02c7d1056252793.tar.bz2 gentoo-2aeb28a023770d6921c8d7fde02c7d1056252793.zip |
sci-astronomy/gnuastro: drop deprecated ltprune eclass
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-astronomy')
-rw-r--r-- | sci-astronomy/gnuastro/gnuastro-0.3.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sci-astronomy/gnuastro/gnuastro-0.3.ebuild b/sci-astronomy/gnuastro/gnuastro-0.3.ebuild index 75df93e24129..fe896068c87c 100644 --- a/sci-astronomy/gnuastro/gnuastro-0.3.ebuild +++ b/sci-astronomy/gnuastro/gnuastro-0.3.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit autotools ltprune +inherit autotools DESCRIPTION="GNU Astronomy Utilities" HOMEPAGE="https://www.gnu.org/software/gnuastro" @@ -45,5 +45,8 @@ src_configure() { src_install() { default - use static-libs || prune_libtool_files --all + + if ! use static-libs; then + find "${ED}" -name '*.la' -delete || die + fi } |