From: Chris Larson Date: Wed, 26 Aug 2009 22:32:30 +0000 (-0700) Subject: srctree: prefix messages with ${PF} and kill do_package hacks. X-Git-Tag: Release-2010-05/1~2596 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09b6a74a6f03bb114cbc3620b00ce60cbd17ab0b;p=openembedded.git srctree: prefix messages with ${PF} and kill do_package hacks. Signed-off-by: Chris Larson --- diff --git a/classes/srctree.bbclass b/classes/srctree.bbclass index ce9cb834bb..dbf8ad2c3f 100644 --- a/classes/srctree.bbclass +++ b/classes/srctree.bbclass @@ -106,16 +106,10 @@ python do_populate_staging () { rec_exec_task(dep, seen) seen.add(task) #if not exists("%s.%s" % (stamp, task)): - note("Executing task %s" % task) + note("%s: executing task %s" % (d.getVar("PF", True), task)) exec_task(task, d) rec_exec_task("do_install", set()) exec_func("do_stage", d) } do_populate_staging[lockfiles] += "${S}/.lock" - -# Hack, so things don't explode in builds that don't inherit package -do_package ?= " pass" -do_package[func] = "1" -do_package[python] = "1" -addtask package after do_populate_staging