# HG changeset patch # User "Yann E. MORIN" # Date 1295731945 -3600 # Node ID 1300e1714c13eb18bc202914f454167fdae93157 # Parent 7af68e6083aa973919472802153ce671b1f4fbff libc/uClibc: 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. uClibc 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 7af68e6083aa -r 1300e1714c13 scripts/build/libc/uClibc.sh --- a/scripts/build/libc/uClibc.sh Mon Jan 03 23:40:22 2011 +0100 +++ b/scripts/build/libc/uClibc.sh Sat Jan 22 22:32:25 2011 +0100 @@ -75,8 +75,12 @@ CT_EndStep } -# This functions installs uClibc's headers do_libc_headers() { + : +} + +# Build and install headers and start files +do_libc_start_files() { local install_rule local cross @@ -164,11 +168,6 @@ CT_EndStep } -# Build and install start files -do_libc_start_files() { - : -} - # This function build and install the full uClibc do_libc() { CT_DoStep INFO "Installing C library"