# HG changeset patch # User "Yann E. MORIN" # Date 1295731964 -3600 # Node ID 8a8dd36b10877a12b702d68428c8010ab6a4ad1d # Parent 1300e1714c13eb18bc202914f454167fdae93157 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" diff -r 1300e1714c13 -r 8a8dd36b1087 scripts/build/libc/mingw.sh --- a/scripts/build/libc/mingw.sh Sat Jan 22 22:32:25 2011 +0100 +++ b/scripts/build/libc/mingw.sh Sat Jan 22 22:32:44 2011 +0100 @@ -38,6 +38,10 @@ } do_libc_headers() { + : +} + +do_libc_start_files() { CT_DoStep INFO "Installing C library headers" CT_DoLog EXTRA "Installing MinGW Runtime headers" @@ -49,10 +53,6 @@ CT_EndStep } -do_libc_start_files() { - : -} - do_libc() { CT_DoStep INFO "Building MinGW files"