diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-18 12:50:37 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-18 13:31:18 (GMT) |
commit | d21ebcb2444a4b6001c5997f7004bd5cf917d71b (patch) | |
tree | 938b9d980b375157596abd334cbc30bc92bea148 | |
parent | 95a27267daee021514df8c93ffd6d9b9e55dea51 (diff) | |
download | CMake-d21ebcb2444a4b6001c5997f7004bd5cf917d71b.zip CMake-d21ebcb2444a4b6001c5997f7004bd5cf917d71b.tar.gz CMake-d21ebcb2444a4b6001c5997f7004bd5cf917d71b.tar.bz2 |
cmMakefile: Swap parameters of calls to ReadListFile.
The version with a null first parameter is now equivalent.
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index bc225ff..51f9a57 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -526,7 +526,7 @@ bool cmMakefile::ProcessBuildsystemFile(const char* listfile) { this->AddDefinition("CMAKE_PARENT_LIST_FILE", listfile); this->cmCurrentListFile = listfile; - return this->ReadListFile(listfile, 0, true, + return this->ReadListFile(0, listfile, true, this->cmStartDirectory == this->cmHomeDirectory); } |