diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-01-22 22:36:20 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-01-22 22:36:20 +0100 |
commit | 15a1cc24913bf6290caa16d6bb05505d1471f8d0 (patch) | |
tree | 7511bc9d9c5a8858225d480c167b6f17d8603638 | |
parent | 0b773f5823abc9b6dda5b6cee8ef65b17a364eb6 (diff) | |
download | crosstool-ng-15a1cc24913bf6290caa16d6bb05505d1471f8d0.tar.gz crosstool-ng-15a1cc24913bf6290caa16d6bb05505d1471f8d0.tar.bz2 crosstool-ng-15a1cc24913bf6290caa16d6bb05505d1471f8d0.zip |
libc: remove now unneeded do_libc_headers
do_libc_headers is now a noop, and is no longer used, so remove that step.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
-rw-r--r-- | scripts/build/libc/eglibc.sh | 1 | ||||
-rw-r--r-- | scripts/build/libc/glibc-eglibc.sh-common | 6 | ||||
-rw-r--r-- | scripts/build/libc/glibc.sh | 1 | ||||
-rw-r--r-- | scripts/build/libc/mingw.sh | 4 | ||||
-rw-r--r-- | scripts/build/libc/newlib.sh | 4 | ||||
-rw-r--r-- | scripts/build/libc/none.sh | 4 | ||||
-rw-r--r-- | scripts/build/libc/uClibc.sh | 4 | ||||
-rw-r--r-- | steps.mk | 1 |
8 files changed, 0 insertions, 25 deletions
diff --git a/scripts/build/libc/eglibc.sh b/scripts/build/libc/eglibc.sh index 85ac5682..12890beb 100644 --- a/scripts/build/libc/eglibc.sh +++ b/scripts/build/libc/eglibc.sh @@ -1,7 +1,6 @@ # eglibc build functions (initially by Thomas JOURDAN). # Add the definitions common to glibc and eglibc -# do_libc_headers # do_libc_start_files # do_libc # do_libc_finish diff --git a/scripts/build/libc/glibc-eglibc.sh-common b/scripts/build/libc/glibc-eglibc.sh-common index d77baea1..ad5024cd 100644 --- a/scripts/build/libc/glibc-eglibc.sh-common +++ b/scripts/build/libc/glibc-eglibc.sh-common @@ -1,11 +1,5 @@ # This file contains the functions common to glibc and eglibc -# Build and install headers file -# This is a no-op -do_libc_headers() { - : -} - # Build and install headers and start files do_libc_start_files() { local src_dir="${CT_SRC_DIR}/${CT_LIBC}-${CT_LIBC_VERSION}" diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh index 8e213fb4..f569c6f1 100644 --- a/scripts/build/libc/glibc.sh +++ b/scripts/build/libc/glibc.sh @@ -3,7 +3,6 @@ # Licensed under the GPL v2. See COPYING in the root of this package # Add the definitions common to glibc and eglibc -# do_libc_headers # do_libc_start_files # do_libc # do_libc_finish diff --git a/scripts/build/libc/mingw.sh b/scripts/build/libc/mingw.sh index 7cf55c6d..1b9687bd 100644 --- a/scripts/build/libc/mingw.sh +++ b/scripts/build/libc/mingw.sh @@ -37,10 +37,6 @@ do_libc_check_config() { : } -do_libc_headers() { - : -} - do_libc_start_files() { CT_DoStep INFO "Installing C library headers" diff --git a/scripts/build/libc/newlib.sh b/scripts/build/libc/newlib.sh index 6d38a565..9b6f9e55 100644 --- a/scripts/build/libc/newlib.sh +++ b/scripts/build/libc/newlib.sh @@ -48,10 +48,6 @@ do_libc_check_config() { : } -do_libc_headers() { - : -} - do_libc_start_files() { local -a newlib_opts diff --git a/scripts/build/libc/none.sh b/scripts/build/libc/none.sh index 520b8fde..870a4b59 100644 --- a/scripts/build/libc/none.sh +++ b/scripts/build/libc/none.sh @@ -14,10 +14,6 @@ do_libc_check_config() { : } -do_libc_headers() { - : -} - do_libc_start_files() { : } diff --git a/scripts/build/libc/uClibc.sh b/scripts/build/libc/uClibc.sh index a164979a..35b5e0ed 100644 --- a/scripts/build/libc/uClibc.sh +++ b/scripts/build/libc/uClibc.sh @@ -75,10 +75,6 @@ do_libc_check_config() { CT_EndStep } -do_libc_headers() { - : -} - # Build and install headers and start files do_libc_start_files() { local install_rule @@ -28,7 +28,6 @@ CT_STEPS := libc_check_config \ elf2flt \ sstrip \ cc_core_pass_1 \ - libc_headers \ libc_start_files \ cc_core_pass_2 \ libc \ |