From: Mikko Rasa Date: Wed, 9 May 2012 21:00:35 +0000 (+0300) Subject: Clean up output since target names now include the package name X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=284f06b271526b4fcb8ced8c9638c5218d48cad1;p=builder.git Clean up output since target names now include the package name --- diff --git a/source/builder.cpp b/source/builder.cpp index 504fc7d..69bd607 100644 --- a/source/builder.cpp +++ b/source/builder.cpp @@ -581,7 +581,7 @@ int Builder::do_build() if(tgt) { if(tgt->get_tool()) - IO::print("[%-10s] [%-4s] %s\n", tgt->get_package()->get_name(), tgt->get_tool()->get_tag(), tgt->get_name()); + IO::print("%-4s %s\n", tgt->get_tool()->get_tag(), tgt->get_name()); Task *task = tgt->build(); if(task) tasks.push_back(task);