summaryrefslogtreecommitdiffstats
path: root/buildtool.cpp
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2007-04-20 16:41:34 +0000
committerishmal <ishmal@users.sourceforge.net>2007-04-20 16:41:34 +0000
commit301ef588631bdc1e9f98f5841b1565e5eb383fdf (patch)
treec163a134c6cbe2ccc713b0580939c689d5131c3d /buildtool.cpp
parentFixed path in include file checks. (diff)
downloadinkscape-301ef588631bdc1e9f98f5841b1565e5eb383fdf.tar.gz
inkscape-301ef588631bdc1e9f98f5841b1565e5eb383fdf.zip
Say "skipped" when copying a single file is not necessary
(bzr r2938)
Diffstat (limited to 'buildtool.cpp')
-rw-r--r--buildtool.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildtool.cpp b/buildtool.cpp
index 67687af35..9fd3e464c 100644
--- a/buildtool.cpp
+++ b/buildtool.cpp
@@ -37,7 +37,7 @@
*
*/
-#define BUILDTOOL_VERSION "BuildTool v0.6.10, 2007 Bob Jamison"
+#define BUILDTOOL_VERSION "BuildTool v0.6.11, 2007 Bob Jamison"
#include <stdio.h>
#include <fcntl.h>
@@ -6164,6 +6164,7 @@ public:
}
if (!isNewerThan(fullSource, fullDest))
{
+ status(" : skipped");
return true;
}
if (!copyFile(fullSource, fullDest))
@@ -6261,6 +6262,7 @@ public:
}
if (!isNewerThan(fullSource, fullDest))
{
+ status(" : skipped");
return true;
}
if (!copyFile(fullSource, fullDest))