summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-18 12:50:37 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-18 13:31:18 (GMT)
commitd21ebcb2444a4b6001c5997f7004bd5cf917d71b (patch)
tree938b9d980b375157596abd334cbc30bc92bea148
parent95a27267daee021514df8c93ffd6d9b9e55dea51 (diff)
downloadCMake-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.cxx2
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);
}