* [PATCH] build.py: Correct package to recipe in TaskBase events to use consistent terminology
@ 2012-08-17 13:53 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2012-08-17 13:53 UTC (permalink / raw)
To: bitbake-devel
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index b484d19..82d22f7 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/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
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py
index 304ba29..b01daee 100644
--- a/bitbake/lib/bb/ui/knotty.py
+++ b/bitbake/lib/bb/ui/knotty.py
@@ -94,7 +94,7 @@ class InteractConsoleLogFilter(logging.Filter):
self.format = format
def filter(self, record):
- if record.levelno == self.format.NOTE and (record.msg.startswith("Running") or record.msg.startswith("package ")):
+ if record.levelno == self.format.NOTE and (record.msg.startswith("Running") or record.msg.startswith("recipe ")):
return False
self.tf.clearFooter()
return True
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-08-17 14:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-17 13:53 [PATCH] build.py: Correct package to recipe in TaskBase events to use consistent terminology Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox