source: projects/specs/trunk/t/texlive/reautoconf-parallel.diff @ 7148

Revision 7148, 812 bytes checked in by munepi, 11 years ago (diff)

upgrade to TeX Live 2012

  • reautoconf

    old new  
    8383 
    8484# Give users a chance to quit here 
    8585# and set TL_AUTOCONF, TL_AUTOHEADER, TL_AUTOMAKE, and/or TL_ACLOCAL 
    86 $do_cmd sleep 5 
     86#$do_cmd sleep 5 
    8787 
     88PARALLEL_MAX=3 
     89PARALLEL_NOW=0 
    8890AUTOCONF=$TL_AUTOCONF 
    8991AUTOHEADER=$TL_AUTOHEADER 
    9092AUTOMAKE=$TL_AUTOMAKE 
     
    9395 
    9496do_it () { 
    9597  $do_say "$0: running \"$@\"" 
    96   $do_cmd "$@" 
     98  $do_cmd "$@" & 
     99  PARALLEL_NOW=`expr $PARALLEL_NOW + 1` 
     100  if [ $PARALLEL_NOW -eq $PARALLEL_MAX ] ; then  
     101    echo -e "\e[1;34mWAITING\e[0m"; wait 
     102    PARALLEL_NOW=0 
     103  fi 
    97104} 
    98105 
    99106if test "x$list" = x; then 
     
    122129  do_it autoreconf $verbose --no-recursive $dir $extra_dirs 
    123130done 
    124131 
     132echo -e "\e[1;34mWAITING\e[0m"; wait 
    125133echo "$0: done." 
Note: See TracBrowser for help on using the repository browser.