diff options
author | Chris Packham <judge.packham@gmail.com> | 2022-05-08 14:06:21 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-05-10 19:46:53 +1200 |
commit | 6d5227b63b096b052dde8717822db259971db515 (patch) | |
tree | 367194d0497ac11587d4740d8c180009605a9e27 /scripts | |
parent | 53bbdc74252f68a3800d222dddee69e63b617bf9 (diff) | |
download | crosstool-ng-6d5227b63b096b052dde8717822db259971db515.tar.gz crosstool-ng-6d5227b63b096b052dde8717822db259971db515.tar.bz2 crosstool-ng-6d5227b63b096b052dde8717822db259971db515.zip |
Remove obsolete glibc 2.12.1
glibc 2.12.1 was marked as obsolete. Now that the 1.25.0 release is out
this version can be removed completely. As glibc 2.12.1 was the last
remaining version supported by glibc-ports support for glibc-ports is
also removed.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/libc/glibc.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh index c78f0698..3ca77fe6 100644 --- a/scripts/build/libc/glibc.sh +++ b/scripts/build/libc/glibc.sh @@ -8,26 +8,12 @@ glibc_get() local version CT_Fetch GLIBC - if [ "${CT_GLIBC_USE_PORTS_EXTERNAL}" = "y" ]; then - CT_Fetch GLIBC_PORTS - fi return 0 } glibc_extract() { CT_ExtractPatch GLIBC - if [ "${CT_GLIBC_USE_PORTS_EXTERNAL}" = "y" ]; then - CT_ExtractPatch GLIBC_PORTS - - # This may create a bogus symlink if glibc-ports is using custom - # sources or has an overlay (and glibc is shared). However, - # we do not support concurrent use of the source directory - # and next run, if using different glibc-ports source, will override - # this symlink anyway. - CT_DoExecLog ALL ln -sf "${CT_SRC_DIR}/${CT_GLIBC_PORTS_DIR_NAME}" \ - "${CT_SRC_DIR}/${CT_GLIBC_DIR_NAME}/ports" - fi } # This function builds and install the full C library @@ -308,9 +294,6 @@ glibc_add_ons_list() local sep="$1" local addons_list - if [ "${CT_GLIBC_USE_PORTS_ADDON}" = "y" ]; then - addons_list="${addons_list}${sep}ports" - fi if [ "${CT_GLIBC_USE_NPTL_ADDON}" = "y" ]; then addons_list="${addons_list}${sep}nptl" fi |