aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/build.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-17 14:53:16 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-18 16:20:14 +0100
commite5045429bce15b66c4355be214db3982ac7761f3 (patch)
tree8d990036e93bce2308411d594acef0b4fef0788f /lib/bb/build.py
parentbbf1f6fe594c721a296ca09ee7c583d4a205c591 (diff)
downloadbitbake-e5045429bce15b66c4355be214db3982ac7761f3.tar.gz
build.py: Correct package to recipe in TaskBase events to use consistent terminology
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/build.py')
-rw-r--r--lib/bb/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/build.py b/lib/bb/build.py
index b484d19ec..82d22f716 100644
--- a/lib/bb/build.py
+++ b/lib/bb/build.py
@@ -72,7 +72,7 @@ class TaskBase(event.Event):
self._task = t
self._package = d.getVar("PF", True)
event.Event.__init__(self)
- self._message = "package %s: task %s: %s" % (d.getVar("PF", True), t, self.getDisplayName())
+ self._message = "recipe %s: task %s: %s" % (d.getVar("PF", True), t, self.getDisplayName())
def getTask(self):
return self._task