scripts/build/libc/glibc.sh
changeset 2274 2f0e9d2cfce5
parent 2273 c6d2311442ad
child 2275 9ab4392430ad
     1.1 --- a/scripts/build/libc/glibc.sh	Sat Jan 22 22:35:02 2011 +0100
     1.2 +++ b/scripts/build/libc/glibc.sh	Sat Jan 22 22:35:18 2011 +0100
     1.3 @@ -263,16 +263,3 @@
     1.4  
     1.5      CT_EndStep
     1.6  }
     1.7 -
     1.8 -# Build up the addons list, separated with $1
     1.9 -do_libc_add_ons_list() {
    1.10 -    local sep="$1"
    1.11 -    local addons_list=$(echo "${CT_LIBC_ADDONS_LIST}" |sed -r -e "s/[ ,]/${sep}/g;")
    1.12 -    case "${CT_THREADS}" in
    1.13 -        none)   ;;
    1.14 -        *)      addons_list="${addons_list}${sep}${CT_THREADS}";;
    1.15 -    esac
    1.16 -    [ "${CT_LIBC_GLIBC_USE_PORTS}" = "y" ] && addons_list="${addons_list}${sep}ports"
    1.17 -    # Remove duplicate, leading and trailing separators
    1.18 -    echo "${addons_list}" |sed -r -e "s/${sep}+/${sep}/g; s/^${sep}//; s/${sep}\$//;"
    1.19 -}