Magellan Linux

Diff of /trunk/include/multilib.sminc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 9333 by niro, Sat Nov 26 13:31:10 2011 UTC revision 9334 by niro, Sat Nov 26 13:37:05 2011 UTC
# Line 388  mlibtoolize() Line 388  mlibtoolize()
388   done   done
389  }  }
390    
391    if [[ ! -z $(typeset -f mautoreconf) ]]
392    then
393     # rename the old one
394     old_mautoreconf=old$(typeset -f mautoreconf)
395     eval "${old_mautoreconf}"
396    fi
397    mautoreconf()
398    {
399     local abi
400     local abis_to_run="${MULTILIB_ABIS}"
401    
402     # respect MULTILIB_ONLY_ABI variable
403     [[ ! -z ${MULTILIB_ONLY_ABI} ]] && abis_to_run="${MULTILIB_ONLY_ABI}"
404    
405     for abi in ${abis_to_run}
406     do
407     echo -e "${COLBLUE}*** ${COLGREEN}running mautoreconf for ABI -${abi}${COLDEFAULT}"
408     cd ${SRCDIR}-${abi}
409     oldmautoreconf $@ || die
410     done
411    }
412    
413  if [[ ! -z $(typeset -f minstalldocs) ]]  if [[ ! -z $(typeset -f minstalldocs) ]]
414  then  then
415   # rename the old one   # rename the old one

Legend:
Removed from v.9333  
changed lines
  Added in v.9334