summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-06 16:43:43 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-06 16:46:17 +0000
commit4170cf874850b950f31d2e36c895c110c0b096c3 (patch)
tree14794ef0e7fa13e8b10ebbb6bf537edcac5e818b
parent7ef12684e8647b006bf46cae695069d4bfece1cf (diff)
downloadopenembedded-core-contrib-4170cf874850b950f31d2e36c895c110c0b096c3.tar.gz
event: Replace slightly elderly bbmake references!
bbmake hasn't existed for a while (a decade+) so we should probably remove the references. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/event.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bb/event.py b/lib/bb/event.py
index 5491914752..e2ca33ea63 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -382,7 +382,7 @@ class StampUpdate(Event):
targets = property(getTargets)
class BuildBase(Event):
- """Base class for bbmake run events"""
+ """Base class for bitbake build events"""
def __init__(self, n, p, failures = 0):
self._name = n
@@ -427,13 +427,13 @@ class BuildInit(BuildBase):
BuildBase.__init__(self, name, p)
class BuildStarted(BuildBase, OperationStarted):
- """bbmake build run started"""
+ """Event when builds start"""
def __init__(self, n, p, failures = 0):
OperationStarted.__init__(self, "Building Started")
BuildBase.__init__(self, n, p, failures)
class BuildCompleted(BuildBase, OperationCompleted):
- """bbmake build run completed"""
+ """Event when builds have completed"""
def __init__(self, total, n, p, failures=0, interrupted=0):
if not failures:
OperationCompleted.__init__(self, total, "Building Succeeded")