diff options
author | Brad King <brad.king@kitware.com> | 2020-09-21 18:05:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-09-29 10:03:15 (GMT) |
commit | 1a5bf8245e19450c5e04221affa1a7f3994bdb63 (patch) | |
tree | 73128b10024f9f071c245168e4ed98618509f86a /Source/cmMakefile.cxx | |
parent | 39677de5e209445c8cbc5957c1e79088d5d2a03a (diff) | |
download | CMake-1a5bf8245e19450c5e04221affa1a7f3994bdb63.zip CMake-1a5bf8245e19450c5e04221affa1a7f3994bdb63.tar.gz CMake-1a5bf8245e19450c5e04221affa1a7f3994bdb63.tar.bz2 |
cmMakefile: Clarify name of internal list file run method
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index c8b2133..896839b 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -622,7 +622,7 @@ bool cmMakefile::ReadDependentFile(const std::string& filename, return false; } - this->ReadListFile(listFile, filenametoread); + this->RunListFile(listFile, filenametoread); if (cmSystemTools::GetFatalErrorOccured()) { incScope.Quiet(); } @@ -676,7 +676,7 @@ bool cmMakefile::ReadListFile(const std::string& filename) return false; } - this->ReadListFile(listFile, filenametoread); + this->RunListFile(listFile, filenametoread); if (cmSystemTools::GetFatalErrorOccured()) { scope.Quiet(); } @@ -697,15 +697,15 @@ bool cmMakefile::ReadListFileAsString(const std::string& content, return false; } - this->ReadListFile(listFile, filenametoread); + this->RunListFile(listFile, filenametoread); if (cmSystemTools::GetFatalErrorOccured()) { scope.Quiet(); } return true; } -void cmMakefile::ReadListFile(cmListFile const& listFile, - std::string const& filenametoread) +void cmMakefile::RunListFile(cmListFile const& listFile, + std::string const& filenametoread) { // add this list file to the list of dependencies this->ListFiles.push_back(filenametoread); @@ -1678,7 +1678,7 @@ void cmMakefile::Configure() } } - this->ReadListFile(listFile, currentStart); + this->RunListFile(listFile, currentStart); if (cmSystemTools::GetFatalErrorOccured()) { scope.Quiet(); } |