From 1a9707b0ff27e13db49a2329043752f8cf436bb4 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Wed, 18 Feb 2015 11:03:02 +0000 Subject: 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. --- distbuild/build_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- cgit v1.2.1