summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2015-02-18 11:03:02 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2015-02-18 16:32:50 +0000
commit1a9707b0ff27e13db49a2329043752f8cf436bb4 (patch)
treecc5f90c8cd1e84654e14d604fcad68a962b0ce50
parent441241801c152984fa985a61348aff2c988acbfa (diff)
downloadmorph-1a9707b0ff27e13db49a2329043752f8cf436bb4.tar.gz
distbuild: Use source name, not artifact name, for build step logs
Users build sources, not artifacts. So the log files should be called build-step-systemd.log and not build-step-systemd-misc.log. Note strata are a kind of special case so you will still see build-step-foundation-runtime.log, build-step-foundation-devel.log etc.
-rw-r--r--distbuild/build_controller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/distbuild/build_controller.py b/distbuild/build_controller.py
index aa11ae8f..32da92f4 100644
--- a/distbuild/build_controller.py
+++ b/distbuild/build_controller.py
@@ -121,7 +121,7 @@ class _Abort(object):
def build_step_name(artifact):
'''Return user-comprehensible name for a given artifact.'''
- return artifact.name
+ return artifact.source.name
def map_build_graph(artifact, callback):