summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-21 22:30:03 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-22 11:13:24 +0100
commit7358cbf36b6e1da0d51a67258da61226f8013e06 (patch)
treeca25f107edfaf58827477f029875308a2ea7d157 /meta
parent577ff4e3dd4efe3b129a10eabedf620cfb7a2fa8 (diff)
downloadpoky-7358cbf36b6e1da0d51a67258da61226f8013e06.tar.gz
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>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/base.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 5a1bd3abcb..ea0710fe72 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -309,7 +309,7 @@ base_do_compile() {
309} 309}
310 310
311addtask install after do_compile 311addtask install after do_compile
312do_install[dirs] = "${D} ${B}" 312do_install[dirs] = "${B}"
313# Remove and re-create ${D} so that is it guaranteed to be empty 313# Remove and re-create ${D} so that is it guaranteed to be empty
314do_install[cleandirs] = "${D}" 314do_install[cleandirs] = "${D}"
315 315