cmMakefile: Swap parameters of calls to ReadListFile.

The version with a null first parameter is now equivalent.
This commit is contained in:
Stephen Kelly
2015-04-18 15:31:18 +02:00
parent 95a27267da
commit d21ebcb244
+1 -1
View File
@@ -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);
}