From: Peter Kjellerstedt Date: Mon, 14 Mar 2022 14:16:44 +0000 (+0100) Subject: deploy.bbclass: Remove an unnecessary path from do_deploy[dirs] X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a0566610034ca8abdb71eee999460eb90f805f9f;p=openembedded-core.git deploy.bbclass: Remove an unnecessary path from do_deploy[dirs] There is no reason to include a path in foo[dirs] if it is also in foo[cleandirs] (except if it is the last path in foo[dirs]). Signed-off-by: Peter Kjellerstedt Signed-off-by: Richard Purdie --- diff --git a/meta/classes/deploy.bbclass b/meta/classes/deploy.bbclass index 737c26122b..7fbffe996b 100644 --- a/meta/classes/deploy.bbclass +++ b/meta/classes/deploy.bbclass @@ -7,6 +7,6 @@ python do_deploy_setscene () { 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}"