summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2015-03-25 11:06:05 +0000
committerBaserock Gerrit <gerrit@baserock.org>2015-04-01 16:44:44 +0000
commit59446059d430673c75561233d37d2a319e6188f3 (patch)
tree516a798cc72b70c23474edd054ab48e946b5be1f
parentbd788c7219d8b59be8eb1168f2121d8b280020e6 (diff)
downloadmorph-59446059d430673c75561233d37d2a319e6188f3.tar.gz
Improve build starting output
Change-Id: Ica2a270b254b01b9fb15956556efb74ee641e1b4
-rw-r--r--morphlib/buildcommand.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/morphlib/buildcommand.py b/morphlib/buildcommand.py
index a6be8a8c..874f8d6f 100644
--- a/morphlib/buildcommand.py
+++ b/morphlib/buildcommand.py
@@ -274,7 +274,8 @@ class BuildCommand(object):
def build_in_order(self, root_artifact):
'''Build everything specified in a build order.'''
- self.app.status(msg='Building a set of sources')
+ self.app.status(msg='Starting build of %(name)s',
+ name=root_artifact.source.name)
build_env = root_artifact.build_env
ordered_sources = list(self.get_ordered_sources(root_artifact.walk()))
old_prefix = self.app.status_prefix