Magellan Linux

Diff of /trunk/include/multilib.sminc

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

revision 8334 by niro, Thu Jul 14 21:43:24 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) ]]
414    then
415     # rename the old one
416     old_minstalldocs=old$(typeset -f minstalldocs)
417     eval "${old_minstalldocs}"
418    fi
419  minstalldocs()  minstalldocs()
420  {  {
421   local abi   local abi

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