summaryrefslogtreecommitdiffstats
path: root/buildtool.cpp
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2008-04-04 17:27:40 +0000
committerishmal <ishmal@users.sourceforge.net>2008-04-04 17:27:40 +0000
commitdac6bbd44ef0a4cf45873788696e36b5a0303758 (patch)
treef6bd73e52598d0399b1f3b0d85ef6c7c3a8a7a46 /buildtool.cpp
parentImprove status messages a bit (diff)
downloadinkscape-dac6bbd44ef0a4cf45873788696e36b5a0303758.tar.gz
inkscape-dac6bbd44ef0a4cf45873788696e36b5a0303758.zip
make dependency messages a bit better
(bzr r5332)
Diffstat (limited to 'buildtool.cpp')
-rw-r--r--buildtool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildtool.cpp b/buildtool.cpp
index 613673f69..721c0d769 100644
--- a/buildtool.cpp
+++ b/buildtool.cpp
@@ -6299,7 +6299,7 @@ public:
//# First we check if the source is newer than the .o
if (isNewerThan(srcFullName, destFullName))
{
- taskstatus("compile of %s required by %s",
+ taskstatus("compile of %s required by source: %s",
destFullName.c_str(), srcFullName.c_str());
compileMe = true;
}
@@ -6322,7 +6322,7 @@ public:
// destFullName.c_str(), depFullName.c_str());
if (depRequires)
{
- taskstatus("compile of %s required by %s",
+ taskstatus("compile of %s required by included: %s",
destFullName.c_str(), depFullName.c_str());
compileMe = true;
break;