summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmSystemTools.cxx4
-rw-r--r--Source/cmSystemTools.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index ff61100..9b82735 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -749,13 +749,15 @@ void cmSystemTools::Message(const char* m1, const char *title)
}
-void cmSystemTools::CopyFileIfDifferent(const char* source,
+bool cmSystemTools::CopyFileIfDifferent(const char* source,
const char* destination)
{
if(cmSystemTools::FilesDiffer(source, destination))
{
cmSystemTools::cmCopyFile(source, destination);
+ return true;
}
+ return false;
}
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h
index 883a8f4..ed48e85 100644
--- a/Source/cmSystemTools.h
+++ b/Source/cmSystemTools.h
@@ -174,7 +174,7 @@ public:
* Copy the source file to the destination file only
* if the two files differ.
*/
- static void CopyFileIfDifferent(const char* source,
+ static bool CopyFileIfDifferent(const char* source,
const char* destination);
///! Compare the contents of two files. Return true if different.