From: Richard Purdie Date: Fri, 17 Aug 2012 13:53:16 +0000 (+0100) Subject: bitbake: build.py: Correct package to recipe in TaskBase events to use consistent... X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=96ece9ad1ae027b577098142dfdb2c7ccf1e14c9;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake: build.py: Correct package to recipe in TaskBase events to use consistent terminology (Bitbake rev: e5045429bce15b66c4355be214db3982ac7761f3) Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index b484d19ec72..82d22f7165d 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 304ba293d1f..b01daee5737 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