From 7b7c78b5929b78f40dcb53f6f5dca6f4db7c84e6 Mon Sep 17 00:00:00 2001 From: David Michael Date: Mon, 21 Jan 2019 21:09:41 +0000 Subject: [PATCH] build_library: Drop old workarounds for toolchain binpkgs --- build_library/toolchain_util.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build_library/toolchain_util.sh b/build_library/toolchain_util.sh index 26cf2a6bd5..2b3969af8c 100644 --- a/build_library/toolchain_util.sh +++ b/build_library/toolchain_util.sh @@ -190,9 +190,7 @@ get_cross_pkgs() { # Get portage arguments restricting toolchains to binary packages only. get_binonly_args() { local pkgs=( "${TOOLCHAIN_PKGS[@]}" $(get_cross_pkgs "$@") ) - # XXX: Drop this exception after stable > 1925. - local tmppkgs=( ${pkgs[*]##*/glibc} ) ; tmppkgs=( ${tmppkgs[*]##*/binutils} ) - echo "${tmppkgs[@]/#/--useoldpkg-atoms=}" "${pkgs[@]/#/--rebuild-exclude=}" + echo "${pkgs[@]/#/--useoldpkg-atoms=}" "${pkgs[@]/#/--rebuild-exclude=}" } ### Toolchain building utilities ###