summaryrefslogtreecommitdiffstats
path: root/buildtool.cpp
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2008-04-04 17:55:37 +0000
committerishmal <ishmal@users.sourceforge.net>2008-04-04 17:55:37 +0000
commite134a493baa716c767e27c6b5606a58e9c76a5cc (patch)
treefa1c1cb9c0b9e49730b21fc07f309bbaf9c032e2 /buildtool.cpp
parentFix LP bug #190420 (noncompliant desktop entry); remove pointless (diff)
downloadinkscape-e134a493baa716c767e27c6b5606a58e9c76a5cc.tar.gz
inkscape-e134a493baa716c767e27c6b5606a58e9c76a5cc.zip
One more tweak
(bzr r5334)
Diffstat (limited to 'buildtool.cpp')
-rw-r--r--buildtool.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildtool.cpp b/buildtool.cpp
index 721c0d769..21a7a4aef 100644
--- a/buildtool.cpp
+++ b/buildtool.cpp
@@ -6129,7 +6129,7 @@ protected:
{
va_list args;
va_start(args,fmt);
- fprintf(stdout, " --- <%s> : ", name.c_str());
+ fprintf(stdout, " %s : ", name.c_str());
vfprintf(stdout, fmt, args);
fprintf(stdout, "\n");
va_end(args) ;
@@ -8561,7 +8561,7 @@ bool Make::executeTarget(Target &target,
}
}
- status("## Target : %s : %s", name.c_str(),
+ status("##### Target : %s\n##### %s", name.c_str(),
target.getDescription().c_str());
//Now let's do the tasks
@@ -8569,7 +8569,7 @@ bool Make::executeTarget(Target &target,
for (unsigned int i=0 ; i<tasks.size() ; i++)
{
Task *task = tasks[i];
- status("task : %s", task->getName().c_str());
+ status("--- %s / %s", name.c_str(), task->getName().c_str());
if (!task->execute())
{
return false;