diff options
author | Javier Viguera <javier.viguera@digi.com> | 2013-11-13 18:59:14 +0100 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2013-11-13 16:19:20 -0200 |
commit | 2d15efe3c92283b227723ae425cff478c2be2ddc (patch) | |
tree | f585b203e6058aabef4c4581516739980140ef76 | |
parent | 362c55a3a251e0ef8df2a0069a2396d208121288 (diff) | |
download | meta-fsl-arm-2d15efe3c92283b227723ae425cff478c2be2ddc.tar.gz meta-fsl-arm-2d15efe3c92283b227723ae425cff478c2be2ddc.tar.bz2 meta-fsl-arm-2d15efe3c92283b227723ae425cff478c2be2ddc.zip |
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-- | recipes-bsp/imx-bootlets/imx-bootlets_10.12.01.bb | 2 |
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 () { symlink_name="imx-bootlets-`basename $f`-${MACHINE}" install -m 644 ${S}/$f ${DEPLOYDIR}/$full_name - (cd ${DEPLOYDIR} ; rm -f $symlink_nake ; ln -sf $full_name $symlink_name) + (cd ${DEPLOYDIR} ; rm -f $symlink_name ; ln -sf $full_name $symlink_name) done } |