libc/mingw: move content of do_libc_headers into do_libc_start_files
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jan 22 22:32:44 2011 +0100 (2011-01-22)
changeset 22698a8dd36b1087
parent 2268 1300e1714c13
child 2270 287e1e00dea4
libc/mingw: move content of do_libc_headers into do_libc_start_files

It is unnecessary to split C library preparation into two steps, as only
one really makes sense. So, do_libc_headers is bound to be withdrawn
short-term, in favor of do_libc_start_files.

mingw already had all its start files installation in do_libc_headers, and
do_libc_start_files was empty, just migrate the content of the former into
the latter.


Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
scripts/build/libc/mingw.sh
     1.1 --- a/scripts/build/libc/mingw.sh	Sat Jan 22 22:32:25 2011 +0100
     1.2 +++ b/scripts/build/libc/mingw.sh	Sat Jan 22 22:32:44 2011 +0100
     1.3 @@ -38,6 +38,10 @@
     1.4  }
     1.5  
     1.6  do_libc_headers() {
     1.7 +    :
     1.8 +}
     1.9 +
    1.10 +do_libc_start_files() {
    1.11      CT_DoStep INFO "Installing C library headers"
    1.12  
    1.13      CT_DoLog EXTRA "Installing MinGW Runtime headers"
    1.14 @@ -49,10 +53,6 @@
    1.15      CT_EndStep
    1.16  }
    1.17  
    1.18 -do_libc_start_files() {
    1.19 -    :
    1.20 -}
    1.21 -
    1.22  do_libc() {
    1.23      CT_DoStep INFO "Building MinGW files"
    1.24