| Message ID | bb559e86-8f2b-03cf-cd87-4992e9f38a7a@crashcourse.ca |
|---|---|
| State | New |
| Headers | show |
| Series | overview-manual: update deploy.bbclass snippet | expand |
diff --git a/documentation/overview-manual/concepts.rst b/documentation/overview-manual/concepts.rst index 76ace6fcf..fb9a56607 100644 --- a/documentation/overview-manual/concepts.rst +++ b/documentation/overview-manual/concepts.rst @@ -1776,7 +1776,8 @@ adding shared state wrapping to a task is as simple as this sstate_setscene(d) } addtask do_deploy_setscene - do_deploy[dirs] = "${DEPLOYDIR} ${B}" + do_deploy[dirs] = "${B}" + do_deploy[cleandirs] = "${DEPLOYDIR}" do_deploy[stamp-extra-info] = "${MACHINE_ARCH}" The following list explains the previous example:
The current contents of deploy.bbclass is slightly different so update the code snippet. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> ---