diff options
author | Alexey Neyman <stilor@att.net> | 2017-02-15 20:36:39 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-15 20:36:39 -0800 |
commit | 2f052394a5376fe90c240972e2cb8f8abcc7267c (patch) | |
tree | 49c67ed5fb9729ef554c3a07a916612af5139e24 /scripts/build/libc/glibc.sh | |
parent | fbc69323085e2370faeb8b46291cd66cbf9ef649 (diff) | |
parent | 7bcf18bfab84374d3305c7a088f95ac1219ddf93 (diff) | |
download | crosstool-ng-2f052394a5376fe90c240972e2cb8f8abcc7267c.tar.gz crosstool-ng-2f052394a5376fe90c240972e2cb8f8abcc7267c.tar.bz2 crosstool-ng-2f052394a5376fe90c240972e2cb8f8abcc7267c.zip |
Merge pull request #596 from stilor/sed-vs-gsed
Determine whether -E/-r option selects extended regexp
Diffstat (limited to 'scripts/build/libc/glibc.sh')
-rw-r--r-- | scripts/build/libc/glibc.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh index 348c35ad..00702a33 100644 --- a/scripts/build/libc/glibc.sh +++ b/scripts/build/libc/glibc.sh @@ -473,7 +473,7 @@ do_libc_backend_once() { do_libc_add_ons_list() { local sep="$1" local addons_list="$( echo "${CT_LIBC_ADDONS_LIST}" \ - |sed -r -e "s/[[:space:],]/${sep}/g;" \ + |sed_r -e "s/[[:space:],]/${sep}/g;" \ )" if [ "${CT_LIBC_GLIBC_2_20_or_later}" != "y" ]; then case "${CT_THREADS}" in @@ -483,7 +483,7 @@ do_libc_add_ons_list() { fi [ "${CT_LIBC_GLIBC_USE_PORTS}" = "y" ] && addons_list="${addons_list}${sep}ports" # Remove duplicate, leading and trailing separators - echo "${addons_list}" |sed -r -e "s/${sep}+/${sep}/g; s/^${sep}//; s/${sep}\$//;" + echo "${addons_list}" |sed_r -e "s/${sep}+/${sep}/g; s/^${sep}//; s/${sep}\$//;" } # Compute up the minimum supported Linux kernel version @@ -512,7 +512,7 @@ do_libc_min_kernel_config() { elif [ "${CT_LIBC_GLIBC_KERNEL_VERSION_CHOSEN}" = "y" ]; then # Trim the fourth part of the linux version, keeping only the first three numbers min_kernel_config="$( echo "${CT_LIBC_GLIBC_MIN_KERNEL_VERSION}" \ - |sed -r -e 's/^([^.]+\.[^.]+\.[^.]+)(|\.[^.]+)$/\1/;' \ + |sed_r -e 's/^([^.]+\.[^.]+\.[^.]+)(|\.[^.]+)$/\1/;' \ )" fi echo "--enable-kernel=${min_kernel_config}" |