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]

(From OE-Core rev: 7e0f95bf359bc3b5bb1578024a993e184de155cd)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2016-09-21 22:30:03 +01:00
parent 577ff4e3dd
commit 7358cbf36b
1 changed files with 1 additions and 1 deletions

View 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}"