diff options
author | Simon Glass | 2016-09-18 16:48:33 -0600 |
---|---|---|
committer | sjg | 2016-10-09 09:30:32 -0600 |
commit | 745b395aefcd7e4718f6f51167c0e462931842b6 (patch) | |
tree | d862b0c4875db962ead1566b4248d7bbe39a9e3b /tools/buildman/builder.py | |
parent | b222abe736e4ea61e7c61dee412fb80d840b5111 (diff) |
buildman: Print a message indicating the build is starting
Make it clear when buildman actually starts building. This happens when it
has prepared the threads, working directory and output directories.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/builder.py')
-rw-r--r-- | tools/buildman/builder.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/buildman/builder.py b/tools/buildman/builder.py index da2a0a12813..384f053015e 100644 --- a/tools/buildman/builder.py +++ b/tools/buildman/builder.py @@ -1430,6 +1430,7 @@ class Builder: self._PrepareWorkingSpace(min(self.num_threads, len(board_selected)), commits is not None) self._PrepareOutputSpace() + Print('\rStarting build...', newline=False) self.SetupBuild(board_selected, commits) self.ProcessResult(None) |