From: Richard Purdie Date: Wed, 21 Sep 2016 21:30:03 +0000 (+0100) Subject: base.bbclass: Drop unnecessary dirs setting X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~24120 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e0f95bf359bc3b5bb1578024a993e184de155cd;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git base.bbclass: Drop unnecessary dirs setting ${D} is listed in cleandirs so no need to list it in dirs as well. The default directory is ${B} so this is a cleanup which should have no changes to the execution. [YOCTO #10017] Signed-off-by: Richard Purdie --- diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 5a1bd3abcb8..ea0710fe724 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -309,7 +309,7 @@ base_do_compile() { } addtask install after do_compile -do_install[dirs] = "${D} ${B}" +do_install[dirs] = "${B}" # Remove and re-create ${D} so that is it guaranteed to be empty do_install[cleandirs] = "${D}"