summaryrefslogtreecommitdiffstats
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
commit3ec134a96c55b49ec361d28797d22d4d863acb4e (patch)
tree52c4f1de9c0adb7665bcc8c0fbd93a58f8810f72
parentf5449684c7c9e2d6be92d8f66ec723def91ce15f (diff)
downloadmeta-freescale-3ec134a96c55b49ec361d28797d22d4d863acb4e.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>
-rw-r--r--meta-fsl-arm/recipes-bsp/imx-bootlets/imx-bootlets_10.12.01.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-fsl-arm/recipes-bsp/imx-bootlets/imx-bootlets_10.12.01.bb b/meta-fsl-arm/recipes-bsp/imx-bootlets/imx-bootlets_10.12.01.bb
index b96c1e95b..25a5e514b 100644
--- a/meta-fsl-arm/recipes-bsp/imx-bootlets/imx-bootlets_10.12.01.bb
+++ b/meta-fsl-arm/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