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 9367 by niro, Sun Nov 27 23:05:49 2011 UTC
# Line 260  cmake_configure() Line 260  cmake_configure()
260   cd ${SRCDIR}   cd ${SRCDIR}
261   abi-${abi} oldcmake_configure $@ || die   abi-${abi} oldcmake_configure $@ || die
262   done   done
263     # restore SRCDIR
264     SRCDIR="${saved_SRCDIR}"
265  }  }
266    
267  if [[ ! -z $(typeset -f munpack) ]]  if [[ ! -z $(typeset -f munpack) ]]
# Line 388  mlibtoolize() Line 390  mlibtoolize()
390   done   done
391  }  }
392    
393    if [[ ! -z $(typeset -f mautoreconf) ]]
394    then
395     # rename the old one
396     old_mautoreconf=old$(typeset -f mautoreconf)
397     eval "${old_mautoreconf}"
398    fi
399    mautoreconf()
400    {
401     local abi
402     local abis_to_run="${MULTILIB_ABIS}"
403    
404     # respect MULTILIB_ONLY_ABI variable
405     [[ ! -z ${MULTILIB_ONLY_ABI} ]] && abis_to_run="${MULTILIB_ONLY_ABI}"
406    
407     for abi in ${abis_to_run}
408     do
409     echo -e "${COLBLUE}*** ${COLGREEN}running mautoreconf for ABI -${abi}${COLDEFAULT}"
410     cd ${SRCDIR}-${abi}
411     oldmautoreconf $@ || die
412     done
413    }
414    
415  if [[ ! -z $(typeset -f minstalldocs) ]]  if [[ ! -z $(typeset -f minstalldocs) ]]
416  then  then
417   # rename the old one   # rename the old one

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