diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2018-12-02 12:34:41 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2018-12-02 12:34:41 +0000 |
commit | c0c4e4355bf59cf04d35c6eb6e331b9118267113 (patch) | |
tree | d62cc12d61429136135c7e015f72026470b3615b | |
parent | config.site add support for /etc/ overrides (diff) | |
download | crossdev-c0c4e4355bf59cf04d35c6eb6e331b9118267113.tar.gz crossdev-c0c4e4355bf59cf04d35c6eb6e331b9118267113.tar.bz2 crossdev-c0c4e4355bf59cf04d35c6eb6e331b9118267113.zip |
Switch from sys-libs/uclibc to sys-libs/uclibc-ng package.
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
-rwxr-xr-x | crossdev | 4 | ||||
-rwxr-xr-x | wrappers/emerge-wrapper | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -308,8 +308,8 @@ parse_target() { *-dietlibc) LPKG="dietlibc"; LCAT="dev-libs";; *-gnu*) LPKG="glibc";; *-klibc) LPKG="klibc";; - *-uclibc*) LPKG="uclibc";; - *-uclinux) LPKG="uclibc";; + *-uclibc*) LPKG="uclibc-ng";; + *-uclinux) LPKG="uclibc-ng";; *-musl*) LPKG="musl";; # Windows targets diff --git a/wrappers/emerge-wrapper b/wrappers/emerge-wrapper index fc53f2a..d554eba 100755 --- a/wrappers/emerge-wrapper +++ b/wrappers/emerge-wrapper @@ -55,7 +55,7 @@ cross_wrap_etc() LIBC="__LIBC__" case ${CHOST} in *gnu*) LIBC=glibc ;; - *uclibc*) LIBC=uclibc ;; + *uclibc*) LIBC=uclibc-ng ;; *musl*) LIBC=musl ;; *cygwin*) LIBC=Cygwin ;; *mingw*) LIBC=mingw ;; |