Diff for /elwix/build_world.sh between versions 1.1.1.1.6.3 and 1.2

version 1.1.1.1.6.3, 2012/03/21 08:58:50 version 1.2, 2012/10/12 08:22:43
Line 52  build_world() Line 52  build_world()
         cd $BSDSRC          cd $BSDSRC
         env MAKEOBJDIRPREFIX=${BSDOBJ} make TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \          env MAKEOBJDIRPREFIX=${BSDOBJ} make TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
                 -j${PARALLEL_BUILD} buildworld DESTDIR=${WORLD}                  -j${PARALLEL_BUILD} buildworld DESTDIR=${WORLD}
        cd -        if [ $? -eq 0 ]; then
                 cd -
         else
                 exit 1
         fi
 }  }
   
 install_world()  install_world()
Line 63  install_world() Line 67  install_world()
                 installworld DESTDIR=${WORLD}                  installworld DESTDIR=${WORLD}
         cd -          cd -
   
        echo "ELWIX Platform:${PLATFORM} Version:${VERSION} TargetArch:${TARGET_ARCH}" >${WORLD}/elwix.ver        if [ $? -eq 0 ]; then
                 echo "ELWIX Platform:${PLATFORM} Version:${VERSION} TargetArch:${TARGET_ARCH}" >${WORLD}/elwix.ver
         fi
 }  }
   
 build_cross()  build_cross()

Removed from v.1.1.1.1.6.3  
changed lines
  Added in v.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>