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:20:22 -0200 |
commit | 24caed8ff6f6088033d00d4567f7a7cad7fd5dd3 (patch) | |
tree | 69e32017f2136f0882c3987150cac4756edf4ef0 | |
parent | afe2162644544a92a517f1d51211fdcb76bb1a29 (diff) | |
download | meta-fsl-arm-24caed8ff6f6088033d00d4567f7a7cad7fd5dd3.tar.gz |
imx-bootlets: Fix removal of symbolic link in do_deploydylan
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 6cea049..5161a7c 100644 --- a/recipes-bsp/imx-bootlets/imx-bootlets_10.12.01.bb +++ b/recipes-bsp/imx-bootlets/imx-bootlets_10.12.01.bb | |||
@@ -61,7 +61,7 @@ do_deploy () { | |||
61 | symlink_name="imx-bootlets-`basename $f`-${MACHINE}" | 61 | symlink_name="imx-bootlets-`basename $f`-${MACHINE}" |
62 | 62 | ||
63 | install -m 644 ${S}/$f ${DEPLOY_DIR_IMAGE}/$full_name | 63 | install -m 644 ${S}/$f ${DEPLOY_DIR_IMAGE}/$full_name |
64 | (cd ${DEPLOY_DIR_IMAGE} ; rm -f $symlink_nake ; ln -sf $full_name $symlink_name) | 64 | (cd ${DEPLOY_DIR_IMAGE} ; rm -f $symlink_name ; ln -sf $full_name $symlink_name) |
65 | done | 65 | done |
66 | } | 66 | } |
67 | 67 | ||