sjf2410-linux-native: Fix do_deploy sstate caching

deploy.bbclass requires do_deploy to copy files to DEPLOYDIR (sstate
input dir) instead of DEPLOY_DIR_TOOLS (sstate output dir), otherwise
the sstate caching does not work.

Signed-off-by: Daniel Klauer <daniel.klauer@gin.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Klauer, Daniel
2019-08-28 14:43:35 +02:00
committed by Khem Raj
parent dab0e5421f
commit 7d44b3d785
@@ -27,8 +27,7 @@ do_install() {
}
do_deploy() {
install -d ${DEPLOY_DIR_TOOLS}
install -m 0755 sjf2410 ${DEPLOY_DIR_TOOLS}/sjf2410-${PV}
install -m 0755 sjf2410 ${DEPLOYDIR}/sjf2410-${PV}
}
addtask deploy before do_build after do_install