summaryrefslogtreecommitdiffstats
path: root/Source/cmFileCopier.cxx
diff options
context:
space:
mode:
authorSebastian Holtermann <sebholt@xwmw.org>2019-03-14 16:11:21 (GMT)
committerSebastian Holtermann <sebholt@xwmw.org>2019-03-18 14:09:11 (GMT)
commit98d48469534f7a491b8c358d513472806c858d22 (patch)
tree509b9cddeec52fb34a581d5eeae479a67d3e7075 /Source/cmFileCopier.cxx
parenta6d75a1ce0daec9c60ed850163f76416de35edb7 (diff)
downloadCMake-98d48469534f7a491b8c358d513472806c858d22.zip
CMake-98d48469534f7a491b8c358d513472806c858d22.tar.gz
CMake-98d48469534f7a491b8c358d513472806c858d22.tar.bz2
Rename cmFileTimeCache::FileTimesDiffer to cmFileTimeCache::DifferS
Diffstat (limited to 'Source/cmFileCopier.cxx')
-rw-r--r--Source/cmFileCopier.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFileCopier.cxx b/Source/cmFileCopier.cxx
index 560d893..8913e6d 100644
--- a/Source/cmFileCopier.cxx
+++ b/Source/cmFileCopier.cxx
@@ -532,7 +532,7 @@ bool cmFileCopier::InstallFile(const std::string& fromFile,
bool copy = true;
if (!this->Always) {
// If both files exist with the same time do not copy.
- if (!this->FileTimes.FileTimesDiffer(fromFile, toFile)) {
+ if (!this->FileTimes.DifferS(fromFile, toFile)) {
copy = false;
}
}