commit: 43427a0da4dfdc9f046b5c8bd7d106f6c9661b90
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 17:22:40 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 29 18:19:08 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43427a0d
portability.eclass: drop dead prefix targets
Deliberately keeping uclibc even if I don't really want to, given it's possible
one could want to cross to it still.
Signed-off-by: Sam James <sam <AT> gentoo.org>
eclass/portability.eclass | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/eclass/portability.eclass b/eclass/portability.eclass
index f31e3fee6ca3..98e9418343d2 100644
--- a/eclass/portability.eclass
+++ b/eclass/portability.eclass
@@ -90,9 +90,8 @@ dlopen_lib() {
# - Darwin needs nothing
# - *BSD needs nothing
# - Linux needs -ldl (glibc and uclibc)
- # - Interix needs -ldl
case "${CHOST}" in
- *-linux-gnu*|*-linux-uclibc|*-interix*)
+ *-linux-gnu*|*-linux-uclibc)
echo "-ldl"
;;
esac