diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-01-22 22:32:25 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-01-22 22:32:25 +0100 |
commit | 7b003fde97e82bce48a58bd712baa3d7ba913078 (patch) | |
tree | 23fc71dded36f933348f93bab5a76bd6482c0121 /scripts/build/libc | |
parent | 6568c1a39a29316caf7658f01955c0790639cef0 (diff) | |
download | crosstool-ng-7b003fde97e82bce48a58bd712baa3d7ba913078.tar.gz crosstool-ng-7b003fde97e82bce48a58bd712baa3d7ba913078.tar.bz2 crosstool-ng-7b003fde97e82bce48a58bd712baa3d7ba913078.zip |
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" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'scripts/build/libc')
-rw-r--r-- | scripts/build/libc/uClibc.sh | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/scripts/build/libc/uClibc.sh b/scripts/build/libc/uClibc.sh index 43ebe579..f4a84b8c 100644 --- a/scripts/build/libc/uClibc.sh +++ b/scripts/build/libc/uClibc.sh @@ -75,8 +75,12 @@ do_libc_check_config() { 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 @@ do_libc_headers() { 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" |