diff options
| -rw-r--r-- | bitbake/lib/bb/event.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 5491914752..e2ca33ea63 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py | |||
| @@ -382,7 +382,7 @@ class StampUpdate(Event): | |||
| 382 | targets = property(getTargets) | 382 | targets = property(getTargets) |
| 383 | 383 | ||
| 384 | class BuildBase(Event): | 384 | class BuildBase(Event): |
| 385 | """Base class for bbmake run events""" | 385 | """Base class for bitbake build events""" |
| 386 | 386 | ||
| 387 | def __init__(self, n, p, failures = 0): | 387 | def __init__(self, n, p, failures = 0): |
| 388 | self._name = n | 388 | self._name = n |
| @@ -427,13 +427,13 @@ class BuildInit(BuildBase): | |||
| 427 | BuildBase.__init__(self, name, p) | 427 | BuildBase.__init__(self, name, p) |
| 428 | 428 | ||
| 429 | class BuildStarted(BuildBase, OperationStarted): | 429 | class BuildStarted(BuildBase, OperationStarted): |
| 430 | """bbmake build run started""" | 430 | """Event when builds start""" |
| 431 | def __init__(self, n, p, failures = 0): | 431 | def __init__(self, n, p, failures = 0): |
| 432 | OperationStarted.__init__(self, "Building Started") | 432 | OperationStarted.__init__(self, "Building Started") |
| 433 | BuildBase.__init__(self, n, p, failures) | 433 | BuildBase.__init__(self, n, p, failures) |
| 434 | 434 | ||
| 435 | class BuildCompleted(BuildBase, OperationCompleted): | 435 | class BuildCompleted(BuildBase, OperationCompleted): |
| 436 | """bbmake build run completed""" | 436 | """Event when builds have completed""" |
| 437 | def __init__(self, total, n, p, failures=0, interrupted=0): | 437 | def __init__(self, total, n, p, failures=0, interrupted=0): |
| 438 | if not failures: | 438 | if not failures: |
| 439 | OperationCompleted.__init__(self, total, "Building Succeeded") | 439 | OperationCompleted.__init__(self, total, "Building Succeeded") |
