libc: remove now unneeded do_libc_headers
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jan 22 22:36:20 2011 +0100 (2011-01-22)
changeset 2278e86826b8621a
parent 2277 71803c9f6de0
child 2279 a559d9890c02
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>
scripts/build/libc/eglibc.sh
scripts/build/libc/glibc-eglibc.sh-common
scripts/build/libc/glibc.sh
scripts/build/libc/mingw.sh
scripts/build/libc/newlib.sh
scripts/build/libc/none.sh
scripts/build/libc/uClibc.sh
steps.mk
     1.1 --- a/scripts/build/libc/eglibc.sh	Thu Jan 20 00:27:36 2011 +0100
     1.2 +++ b/scripts/build/libc/eglibc.sh	Sat Jan 22 22:36:20 2011 +0100
     1.3 @@ -1,7 +1,6 @@
     1.4  # eglibc build functions (initially by Thomas JOURDAN).
     1.5  
     1.6  # Add the definitions common to glibc and eglibc
     1.7 -#   do_libc_headers
     1.8  #   do_libc_start_files
     1.9  #   do_libc
    1.10  #   do_libc_finish
     2.1 --- a/scripts/build/libc/glibc-eglibc.sh-common	Thu Jan 20 00:27:36 2011 +0100
     2.2 +++ b/scripts/build/libc/glibc-eglibc.sh-common	Sat Jan 22 22:36:20 2011 +0100
     2.3 @@ -1,11 +1,5 @@
     2.4  # This file contains the functions common to glibc and eglibc
     2.5  
     2.6 -# Build and install headers file
     2.7 -# This is a no-op
     2.8 -do_libc_headers() {
     2.9 -    :
    2.10 -}
    2.11 -
    2.12  # Build and install headers and start files
    2.13  do_libc_start_files() {
    2.14      local src_dir="${CT_SRC_DIR}/${CT_LIBC}-${CT_LIBC_VERSION}"
     3.1 --- a/scripts/build/libc/glibc.sh	Thu Jan 20 00:27:36 2011 +0100
     3.2 +++ b/scripts/build/libc/glibc.sh	Sat Jan 22 22:36:20 2011 +0100
     3.3 @@ -3,7 +3,6 @@
     3.4  # Licensed under the GPL v2. See COPYING in the root of this package
     3.5  
     3.6  # Add the definitions common to glibc and eglibc
     3.7 -#   do_libc_headers
     3.8  #   do_libc_start_files
     3.9  #   do_libc
    3.10  #   do_libc_finish
     4.1 --- a/scripts/build/libc/mingw.sh	Thu Jan 20 00:27:36 2011 +0100
     4.2 +++ b/scripts/build/libc/mingw.sh	Sat Jan 22 22:36:20 2011 +0100
     4.3 @@ -37,10 +37,6 @@
     4.4      :
     4.5  }
     4.6  
     4.7 -do_libc_headers() {
     4.8 -    :
     4.9 -}
    4.10 -
    4.11  do_libc_start_files() {
    4.12      CT_DoStep INFO "Installing C library headers"
    4.13  
     5.1 --- a/scripts/build/libc/newlib.sh	Thu Jan 20 00:27:36 2011 +0100
     5.2 +++ b/scripts/build/libc/newlib.sh	Sat Jan 22 22:36:20 2011 +0100
     5.3 @@ -48,10 +48,6 @@
     5.4      :
     5.5  }
     5.6  
     5.7 -do_libc_headers() {
     5.8 -    :
     5.9 -}
    5.10 -
    5.11  do_libc_start_files() {
    5.12      local -a newlib_opts
    5.13  
     6.1 --- a/scripts/build/libc/none.sh	Thu Jan 20 00:27:36 2011 +0100
     6.2 +++ b/scripts/build/libc/none.sh	Sat Jan 22 22:36:20 2011 +0100
     6.3 @@ -14,10 +14,6 @@
     6.4      :
     6.5  }
     6.6  
     6.7 -do_libc_headers() {
     6.8 -    :
     6.9 -}
    6.10 -
    6.11  do_libc_start_files() {
    6.12      :
    6.13  }
     7.1 --- a/scripts/build/libc/uClibc.sh	Thu Jan 20 00:27:36 2011 +0100
     7.2 +++ b/scripts/build/libc/uClibc.sh	Sat Jan 22 22:36:20 2011 +0100
     7.3 @@ -75,10 +75,6 @@
     7.4      CT_EndStep
     7.5  }
     7.6  
     7.7 -do_libc_headers() {
     7.8 -    :
     7.9 -}
    7.10 -
    7.11  # Build and install headers and start files
    7.12  do_libc_start_files() {
    7.13      local install_rule
     8.1 --- a/steps.mk	Thu Jan 20 00:27:36 2011 +0100
     8.2 +++ b/steps.mk	Sat Jan 22 22:36:20 2011 +0100
     8.3 @@ -28,7 +28,6 @@
     8.4              elf2flt             \
     8.5              sstrip              \
     8.6              cc_core_pass_1      \
     8.7 -            libc_headers        \
     8.8              libc_start_files    \
     8.9              cc_core_pass_2      \
    8.10              libc                \