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-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~4825 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0566610034ca8abdb71eee999460eb90f805f9f;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 737c26122b0..7fbffe996be 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}"