diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2016-02-23 23:28:22 -0800 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2016-02-23 23:28:22 -0800 |
commit | 21d15e0fd6a9c0ffdc5ea39527d54f106f4a4c38 (patch) | |
tree | 1eafe25c144437e592a4499a324710aaad45aeeb /scripts/build/libc | |
parent | 39273e0843cc5f7f91d50651b299a0472f59f472 (diff) | |
download | crosstool-ng-21d15e0fd6a9c0ffdc5ea39527d54f106f4a4c38.tar.gz crosstool-ng-21d15e0fd6a9c0ffdc5ea39527d54f106f4a4c38.tar.bz2 crosstool-ng-21d15e0fd6a9c0ffdc5ea39527d54f106f4a4c38.zip |
glibc: remove do_libc_locales_extract; it's empty
No point in calling an empty function. Must be left over from the
glibc/eglibc split up... then re-merge.
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'scripts/build/libc')
-rw-r--r-- | scripts/build/libc/glibc.sh | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh index 8cf80796..93dbbf73 100644 --- a/scripts/build/libc/glibc.sh +++ b/scripts/build/libc/glibc.sh @@ -39,10 +39,6 @@ do_libc_extract() { find . -type f -name configure -exec touch {} \; 2>&1 |CT_DoLog ALL CT_Popd - - if [ "${CT_LIBC_LOCALES}" = "y" ]; then - do_libc_locales_extract - fi } do_libc_check_config() { @@ -535,12 +531,6 @@ do_libc_min_kernel_config() { esac } -# Extract the files required for the libc locales -# Nothing to do -do_libc_locales_extract() { - : -} - # Build and install the libc locales do_libc_locales() { local src_dir="${CT_SRC_DIR}/glibc-${CT_LIBC_VERSION}" |