summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/imx-bootlets
diff options
context:
space:
mode:
authorJavier Viguera <javier.viguera@digi.com>2013-11-13 18:59:14 +0100
committerOtavio Salvador <otavio@ossystems.com.br>2013-11-13 16:15:44 -0200
commitb4765b1ec7f6cf40846908d94846a51f664d7a55 (patch)
treed96fe302fd816de6d78fd18dc5d6d260ef50d56a /recipes-bsp/imx-bootlets
parent9b6c0a45a7ea30bda4a3247be9a43bd43a1603d8 (diff)
downloadmeta-fsl-arm-b4765b1ec7f6cf40846908d94846a51f664d7a55.tar.gz
imx-bootlets: Fix removal of symbolic link in do_deploy
Change-Id: I6c33382bf0df7ae71b76030ba3932ce426329913 Signed-off-by: Javier Viguera <javier.viguera@digi.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-bsp/imx-bootlets')
-rw-r--r--recipes-bsp/imx-bootlets/imx-bootlets_10.12.01.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-bsp/imx-bootlets/imx-bootlets_10.12.01.bb b/recipes-bsp/imx-bootlets/imx-bootlets_10.12.01.bb
index b96c1e9..25a5e51 100644
--- a/recipes-bsp/imx-bootlets/imx-bootlets_10.12.01.bb
+++ b/recipes-bsp/imx-bootlets/imx-bootlets_10.12.01.bb
@@ -69,7 +69,7 @@ do_deploy () {
69 symlink_name="imx-bootlets-`basename $f`-${MACHINE}" 69 symlink_name="imx-bootlets-`basename $f`-${MACHINE}"
70 70
71 install -m 644 ${S}/$f ${DEPLOYDIR}/$full_name 71 install -m 644 ${S}/$f ${DEPLOYDIR}/$full_name
72 (cd ${DEPLOYDIR} ; rm -f $symlink_nake ; ln -sf $full_name $symlink_name) 72 (cd ${DEPLOYDIR} ; rm -f $symlink_name ; ln -sf $full_name $symlink_name)
73 done 73 done
74} 74}
75 75