From 030e8a56646a033eb6aed64b32aac7fe5590305b Mon Sep 17 00:00:00 2001 From: Bob Cochran Date: Sat, 4 Feb 2017 22:36:00 -0500 Subject: change-file-endianess: update do_deploy_class-native so it finds byte_swap.tcl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Otavio Salvador --- recipes-bsp/change-file-endianess/change-file-endianess.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'recipes-bsp/change-file-endianess') 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 () { do_deploy_class-native () { install -d ${DEPLOYDIR} - cp -f ${STAGING_BINDIR_NATIVE}/byte_swap.tcl ${DEPLOYDIR}/ + cp -f ${S}/byte_swap.tcl ${DEPLOYDIR}/ } addtask deploy before do_build after do_populate_sysroot -- cgit v1.2.3-54-g00ecf