diff options
author | Sam James <sam@gentoo.org> | 2023-05-29 18:22:40 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-05-29 19:19:08 +0100 |
commit | 43427a0da4dfdc9f046b5c8bd7d106f6c9661b90 (patch) | |
tree | 3b2f91f6f4ffb9c58976ce695def74e22603b793 /eclass/portability.eclass | |
parent | net-misc/mico: drop dead prefix targets (diff) | |
download | gentoo-43427a0da4dfdc9f046b5c8bd7d106f6c9661b90.tar.gz gentoo-43427a0da4dfdc9f046b5c8bd7d106f6c9661b90.tar.bz2 gentoo-43427a0da4dfdc9f046b5c8bd7d106f6c9661b90.zip |
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@gentoo.org>
Diffstat (limited to 'eclass/portability.eclass')
-rw-r--r-- | eclass/portability.eclass | 3 |
1 files changed, 1 insertions, 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 |