]> code.ossystems Code Review - openembedded-core.git/commitdiff
utility-tasks: Set T to alternate location during do_clean
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 17 Aug 2012 13:19:22 +0000 (14:19 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 18 Aug 2012 15:23:56 +0000 (16:23 +0100)
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@linuxfoundation.org>
meta/classes/utility-tasks.bbclass

index d150ec57baa028b916e1a174f4f3280afc98ea5f..bb26eb7e7eeedf369d065515685877e232649a30 100644 (file)
@@ -12,6 +12,7 @@ python do_listtasks() {
 
 CLEANFUNCS ?= ""
 
+T_task-clean = "${LOG_DIR}/cleanlogs/${PN}"
 addtask clean
 do_clean[nostamp] = "1"
 python do_clean() {