diff options
-rw-r--r-- | build.template | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/build.template b/build.template index f353cd8..88241e3 100644 --- a/build.template +++ b/build.template @@ -60,6 +60,22 @@ if [[ ! $rs_list =~ [0-9]{8}_[0-9] ]]; then echo ${rs_list}.${dateversion} > $SHARE_ROOT/rsver fi +#FIXME: Use previous efl-tool before official SDK release +top_platform=$(ls ${SDK_PATH}/platforms/ | sort -r | head -n1) +for pfm in $(ls ${SDK_PATH}/platforms/ | sort -r); do + if [[ -d ${SDK_PATH}/platforms/${pfm}/common/efl-tool ]]; then + if [ "${top_platform}" = "${pfm}" ]; then + echo "OK. We have efl-tool" + else + echo "Try link efl-tool from ${pfm}" + mkdir -p ${SDK_PATH}/platforms/${top_platform}/common/ || true + ln -s ${SDK_PATH}/platforms/${pfm}/common/efl-tool ${SDK_PATH}/platforms/${top_platform}/common/efl-tool || true + ln -s ${SDK_PATH}/platforms/${pfm}/common/tidl ${SDK_PATH}/platforms/${top_platform}/common/tidl || true + fi + break + fi +done + # Inject tidlc path TIDLC_PATH=`sed -n '/tidl/p' /home/build/.bashrc | cut -f2 -d':'` if [ ! -z ${TIDLC_PATH} ]; then echo "PATH=\$PATH:${TIDLC_PATH}" >> /home/build/.profile; fi |