From: James Le Cuirot Date: Tue, 11 Feb 2020 22:35:13 +0000 (+0000) Subject: media-libs/libsdl2: Never delete libSDL2main.a and libSDL2_test.a X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d7fa6c292459509a1bacc3e046b2c0c3897bc91b;p=gentoo.git media-libs/libsdl2: Never delete libSDL2main.a and libSDL2_test.a These are mandatory are they may be needed even when linking dynamically. Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: James Le Cuirot --- diff --git a/media-libs/libsdl2/libsdl2-2.0.10-r1.ebuild b/media-libs/libsdl2/libsdl2-2.0.10-r2.ebuild similarity index 97% rename from media-libs/libsdl2/libsdl2-2.0.10-r1.ebuild rename to media-libs/libsdl2/libsdl2-2.0.10-r2.ebuild index ba7791dcca78..25492c58c019 100644 --- a/media-libs/libsdl2/libsdl2-2.0.10-r1.ebuild +++ b/media-libs/libsdl2/libsdl2-2.0.10-r2.ebuild @@ -185,9 +185,8 @@ multilib_src_install() { } multilib_src_install_all() { + # Do not delete the static .a libraries here as some are + # mandatory. They may be needed even when linking dynamically. find "${ED}" -type f -name "*.la" -delete || die - if ! use static-libs ; then - find "${ED}" -type f -name "*.a" -delete || die - fi dodoc {BUGS,CREDITS,README,README-SDL,TODO,WhatsNew}.txt docs/README*.md }