netmodule-fitimage: Fix deployment when building from sstate

Deploying directly the DEPLOY_DIR_IMAGE bypasses the shared state
mechanism implemented in the deploy class, leading to the image not
being properly deployed when building entirely from sstate.

BugzID: 80331
This commit is contained in:
Alexandre Bard 2022-06-24 16:00:51 +02:00
parent d7bb7b2796
commit 3dba18ccfc
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ kernel_do_deploy () {
} }
do_deploy () { do_deploy () {
deployDir=${DEPLOY_DIR_IMAGE} deployDir=${DEPLOYDIR}
kernel_do_deploy kernel_do_deploy
} }