From: ishmal Date: Fri, 4 Apr 2008 17:27:40 +0000 (+0000) Subject: make dependency messages a bit better X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=cdd282f648f09d88414f57d1bf996164ab4eb8bb;p=inkscape.git make dependency messages a bit better --- 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;