summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b721294)
raw | patch | inline | side by side (parent: b721294)
author | ishmal <ishmal@users.sourceforge.net> | |
Fri, 4 Apr 2008 17:55:37 +0000 (17:55 +0000) | ||
committer | ishmal <ishmal@users.sourceforge.net> | |
Fri, 4 Apr 2008 17:55:37 +0000 (17:55 +0000) |
buildtool.cpp | patch | blob | history |
diff --git a/buildtool.cpp b/buildtool.cpp
index 721c0d769134a5fd277b33ae4c9b30c77c85ae59..21a7a4aef8131d83b30a315530adc850e15a00d8 100644 (file)
--- a/buildtool.cpp
+++ b/buildtool.cpp
{
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) ;
}
}
- 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
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;