Magellan Linux

Diff of /branches/R11-unstable/include/multilib.sminc

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

revision 21293 by niro, Wed Jun 11 11:10:25 2014 UTC revision 22066 by niro, Fri Aug 22 12:04:19 2014 UTC
# Line 360  cmake_src_check() Line 360  cmake_src_check()
360    
361   for abi in ${abis_to_run}   for abi in ${abis_to_run}
362   do   do
363   cd ${BUILDDIR}/build-${abi}   # honor inside and outside build-dir builds
364     if [ -d ${BUILDDIR}/build-${abi} ]
365     then
366     cd ${BUILDDIR}/build-${abi}
367     else
368     cd ${SRCDIR}
369     fi
370   mmake -j1 -k check || die   mmake -j1 -k check || die
371   done   done
372  }  }
# Line 382  cmake_src_install() Line 388  cmake_src_install()
388    
389   for abi in ${abis_to_run}   for abi in ${abis_to_run}
390   do   do
391   # install build outside of the source dir   # honor inside and outside build-dir builds
392   cd ${BUILDDIR}/build-${abi}   if [ -d ${BUILDDIR}/build-${abi} ]
393     then
394     cd ${BUILDDIR}/build-${abi}
395     else
396     cd ${SRCDIR}
397     fi
398   abi-${abi} oldmmake DESTDIR=${BINDIR} $@ install || die   abi-${abi} oldmmake DESTDIR=${BINDIR} $@ install || die
399   done   done
400  }  }

Legend:
Removed from v.21293  
changed lines
  Added in v.22066