]> code.ossystems Code Review - openembedded-core.git/commitdiff
base.bbclass: Drop unnecessary dirs setting
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 21 Sep 2016 21:30:03 +0000 (22:30 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 22 Sep 2016 10:08:23 +0000 (11:08 +0100)
${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 <richard.purdie@linuxfoundation.org>
meta/classes/base.bbclass

index 5a1bd3abcb85a9b410aa565e4df9b14f2948d036..ea0710fe724b3c82eaa736d27092b52d79ab0edf 100644 (file)
@@ -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}"