[oe-commits] Richard Purdie : utility-tasks: Set T to alternate location during do_clean

git at git.openembedded.org git at git.openembedded.org
Sat Aug 18 15:28:59 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: eef9d6c2d52f5264a6e7a9d882f8323f9793fd7f
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=eef9d6c2d52f5264a6e7a9d882f8323f9793fd7f

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Fri Aug 17 14:19:22 2012 +0100

utility-tasks: Set T to alternate location during do_clean

There is a race where do_clean tries to clean WORKDIR but there are logfiles
written into ${T} by bitbake and this can lead to exceptions due to open files.

The easiest solution is to redirect T to a different location for the do_clean
task, hence avoiding the errors and also allowing the logfiles to be visible
somewhere. ${LOG_DIR} seems an appropriate place for this.

[YOCTO #2846]

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/utility-tasks.bbclass |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta/classes/utility-tasks.bbclass b/meta/classes/utility-tasks.bbclass
index d150ec5..bb26eb7 100644
--- a/meta/classes/utility-tasks.bbclass
+++ b/meta/classes/utility-tasks.bbclass
@@ -12,6 +12,7 @@ python do_listtasks() {
 
 CLEANFUNCS ?= ""
 
+T_task-clean = "${LOG_DIR}/cleanlogs/${PN}"
 addtask clean
 do_clean[nostamp] = "1"
 python do_clean() {





More information about the Openembedded-commits mailing list