diff options
-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 |