diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-01-22 22:32:44 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-01-22 22:32:44 +0100 |
commit | 2dd949cd7f0d6adc03ac7d0cc641fe632715a5ad (patch) | |
tree | 078c6a8e03fff0e71a8938484d83fd111a3074fe | |
parent | 7b003fde97e82bce48a58bd712baa3d7ba913078 (diff) | |
download | crosstool-ng-2dd949cd7f0d6adc03ac7d0cc641fe632715a5ad.tar.gz crosstool-ng-2dd949cd7f0d6adc03ac7d0cc641fe632715a5ad.tar.bz2 crosstool-ng-2dd949cd7f0d6adc03ac7d0cc641fe632715a5ad.zip |
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>
-rw-r--r-- | scripts/build/libc/mingw.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/libc/mingw.sh b/scripts/build/libc/mingw.sh index 303f1c2b..75e3b434 100644 --- a/scripts/build/libc/mingw.sh +++ b/scripts/build/libc/mingw.sh @@ -38,6 +38,10 @@ do_libc_check_config() { } 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 @@ do_libc_headers() { CT_EndStep } -do_libc_start_files() { - : -} - do_libc() { CT_DoStep INFO "Building MinGW files" |