Diff for /elwix/build_3thparty.sh between versions 1.4 and 1.4.2.2

version 1.4, 2014/01/05 23:14:22 version 1.4.2.2, 2014/01/07 09:26:42
Line 9 Line 9
 #  #
   
 [ -r ./config/rc.elwix ] && . ./config/rc.elwix  [ -r ./config/rc.elwix ] && . ./config/rc.elwix
   if [ -r ./config/rc.3thparty_helper ]; then
           . ./config/rc.3thparty_helper
   else
           echo
           echo "ELWIX project is not configured - Missing rc.3thparty_helper script"
           echo
           exit 1
   fi
   
 if [ X"${ELWIX_IS_CONFIGURED}" != X"YES" ]; then  if [ X"${ELWIX_IS_CONFIGURED}" != X"YES" ]; then
         echo          echo
         echo "ELWIX project is not configured !?!"          echo "ELWIX project is not configured !?!"
Line 62  compile_3th() Line 71  compile_3th()
 {  {
         echo "+++ Compile ELWIX 3th party ..."          echo "+++ Compile ELWIX 3th party ..."
   
           BUILD_SH="./config/rc.3thparty_helper"
   
         cd $CROSS_3TH          cd $CROSS_3TH
        ./build.sh expat ${CBUILD} ${PKG} ${TARGET_BUILD}        ${BUILD_SH} expat ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         ./build.sh libevent ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh libevent ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
Line 77  compile_3th() Line 88  compile_3th()
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         ./build.sh scan_ffs ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh scan_ffs ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
        ./build.sh istgt ${CBUILD} ${PKG} ${TARGET_BUILD}#        ./build.sh istgt ${CBUILD} ${PKG} ${TARGET_BUILD}
        [ $? -ne 0 ] && exit 1#        [ $? -ne 0 ] && exit 1
         ./build.sh rsync ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh rsync ${CBUILD} ${PKG} ${TARGET_BUILD}
         [ $? -ne 0 ] && exit 1          [ $? -ne 0 ] && exit 1
         ./build.sh ttcp ${CBUILD} ${PKG} ${TARGET_BUILD}          ./build.sh ttcp ${CBUILD} ${PKG} ${TARGET_BUILD}

Removed from v.1.4  
changed lines
  Added in v.1.4.2.2


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