summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/change-file-endianess
diff options
context:
space:
mode:
authorBob Cochran <yocto@mindchasers.com>2017-02-04 22:36:00 -0500
committerOtavio Salvador <otavio@ossystems.com.br>2017-02-08 21:43:22 -0200
commit030e8a56646a033eb6aed64b32aac7fe5590305b (patch)
treece7bce6aece45bfb3435c2217363ad1c5138e466 /recipes-bsp/change-file-endianess
parent389b8e5b33d17d6e1f31166b0539972a020cb1af (diff)
downloadmeta-freescale-030e8a56646a033eb6aed64b32aac7fe5590305b.tar.gz
change-file-endianess: update do_deploy_class-native so it finds byte_swap.tcl
Modify do_deply_class-native task to copy byte_swap.tcl from top of working directory ${S} rather than ${STAGING_BINDIR_NATIVE} since file isn’t found at current location and this causes a “No such file or directory” error. Signed-off-by: Bob Cochran <yocto@mindchasers.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-bsp/change-file-endianess')
-rw-r--r--recipes-bsp/change-file-endianess/change-file-endianess.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-bsp/change-file-endianess/change-file-endianess.bb b/recipes-bsp/change-file-endianess/change-file-endianess.bb
index ff1828bc..9cf2212e 100644
--- a/recipes-bsp/change-file-endianess/change-file-endianess.bb
+++ b/recipes-bsp/change-file-endianess/change-file-endianess.bb
@@ -25,7 +25,7 @@ do_deploy () {
25 25
26do_deploy_class-native () { 26do_deploy_class-native () {
27 install -d ${DEPLOYDIR} 27 install -d ${DEPLOYDIR}
28 cp -f ${STAGING_BINDIR_NATIVE}/byte_swap.tcl ${DEPLOYDIR}/ 28 cp -f ${S}/byte_swap.tcl ${DEPLOYDIR}/
29} 29}
30addtask deploy before do_build after do_populate_sysroot 30addtask deploy before do_build after do_populate_sysroot
31 31