码迷,mamicode.com
首页 > 其他好文 > 详细

MocorDroid编译工程快速建立编译环境

时间:2015-05-22 16:30:34      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

function sprdLunch()
{
    declare -a arrProj
    arrProj=`find out/target/product -name previous_build_config.mk`

    if [ ${#arrProj[@]} -eq 1 ]; then
        preCfg=`cat ${arrProj[0]}`
        temp1=${preCfg##* } # get full config
        lunName=${temp1%-*} # get lunch name

        echo -n "lunch pre-config: $lunName? [ yes | no] "
        read aNum
        if [ $aNum=y -o $aNum=yes -o x$aNum = x ];then
            lunch $lunName
        else
            lunch
        fi  
    fi  

    unset arrProj
    unset preCfg
    unset temp1
    unset lunName
}

MocorDroid编译工程快速建立编译环境

标签:

原文地址:http://www.cnblogs.com/caidi/p/4522527.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!