Be alittle less verbose in the core CC pass 1 & 2.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Apr 28 07:44:22 2008 +0000 (2008-04-28)
changeset 462b959799c9a36
parent 461 63586e9dcfc3
child 463 cd9eeb62080c
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(-)
scripts/build/cc_gcc.sh
     1.1 --- a/scripts/build/cc_gcc.sh	Mon Apr 28 07:38:36 2008 +0000
     1.2 +++ b/scripts/build/cc_gcc.sh	Mon Apr 28 07:44:22 2008 +0000
     1.3 @@ -31,24 +31,19 @@
     1.4  do_cc_core_pass_1() {
     1.5      # In case we're NPTL, build the static core gcc;
     1.6      # in any other case, do nothing.
     1.7 -    CT_DoStep INFO "Core C compiler, pass 1"
     1.8      case "${CT_THREADS}" in
     1.9          nptl)   do_cc_core_static;;
    1.10 -        *)      CT_DoLog INFO "Nothing to do";;
    1.11      esac
    1.12 -    CT_EndStep
    1.13  }
    1.14  
    1.15  # Core gcc pass 2
    1.16  do_cc_core_pass_2() {
    1.17      # In case we're NPTL, build the shared core gcc,
    1.18      # in any other case, build the static core gcc.
    1.19 -    CT_DoStep INFO "Core C compiler, pass 2"
    1.20      case "${CT_THREADS}" in
    1.21          nptl)   do_cc_core_shared;;
    1.22          *)      do_cc_core_static;;
    1.23      esac
    1.24 -    CT_EndStep
    1.25  }
    1.26  
    1.27  #------------------------------------------------------------------------------