# HG changeset patch # User "Yann E. MORIN" # Date 1209368662 0 # Node ID b959799c9a3623d224eeb431d1cb6313647c85b6 # Parent 63586e9dcfc35a7b4387d680ad95ac47cb69672e Be alittle less verbose in the core CC pass 1 & 2. /trunk/scripts/build/cc_gcc.sh | 5 0 5 0 ----- 1 file changed, 5 deletions(-) diff -r 63586e9dcfc3 -r b959799c9a36 scripts/build/cc_gcc.sh --- a/scripts/build/cc_gcc.sh Mon Apr 28 07:38:36 2008 +0000 +++ b/scripts/build/cc_gcc.sh Mon Apr 28 07:44:22 2008 +0000 @@ -31,24 +31,19 @@ do_cc_core_pass_1() { # In case we're NPTL, build the static core gcc; # in any other case, do nothing. - CT_DoStep INFO "Core C compiler, pass 1" case "${CT_THREADS}" in nptl) do_cc_core_static;; - *) CT_DoLog INFO "Nothing to do";; esac - CT_EndStep } # Core gcc pass 2 do_cc_core_pass_2() { # In case we're NPTL, build the shared core gcc, # in any other case, build the static core gcc. - CT_DoStep INFO "Core C compiler, pass 2" case "${CT_THREADS}" in nptl) do_cc_core_shared;; *) do_cc_core_static;; esac - CT_EndStep } #------------------------------------------------------------------------------