diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-17 14:53:16 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-18 16:21:45 +0100 |
commit | 96ece9ad1ae027b577098142dfdb2c7ccf1e14c9 (patch) | |
tree | 042a15eed15bfd53b83738f90162f922aee855ca | |
parent | a86bd422641ce083ba0cdb4efe2a4c307eb36f7e (diff) | |
download | poky-96ece9ad1ae027b577098142dfdb2c7ccf1e14c9.tar.gz |
bitbake: build.py: Correct package to recipe in TaskBase events to use consistent terminology
(Bitbake rev: e5045429bce15b66c4355be214db3982ac7761f3)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/build.py | 2 | ||||
-rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index b484d19ec7..82d22f7165 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py | |||
@@ -72,7 +72,7 @@ class TaskBase(event.Event): | |||
72 | self._task = t | 72 | self._task = t |
73 | self._package = d.getVar("PF", True) | 73 | self._package = d.getVar("PF", True) |
74 | event.Event.__init__(self) | 74 | event.Event.__init__(self) |
75 | self._message = "package %s: task %s: %s" % (d.getVar("PF", True), t, self.getDisplayName()) | 75 | self._message = "recipe %s: task %s: %s" % (d.getVar("PF", True), t, self.getDisplayName()) |
76 | 76 | ||
77 | def getTask(self): | 77 | def getTask(self): |
78 | return self._task | 78 | return self._task |
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index 304ba293d1..b01daee573 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
@@ -94,7 +94,7 @@ class InteractConsoleLogFilter(logging.Filter): | |||
94 | self.format = format | 94 | self.format = format |
95 | 95 | ||
96 | def filter(self, record): | 96 | def filter(self, record): |
97 | if record.levelno == self.format.NOTE and (record.msg.startswith("Running") or record.msg.startswith("package ")): | 97 | if record.levelno == self.format.NOTE and (record.msg.startswith("Running") or record.msg.startswith("recipe ")): |
98 | return False | 98 | return False |
99 | self.tf.clearFooter() | 99 | self.tf.clearFooter() |
100 | return True | 100 | return True |