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 14:50:37 +02:00
parent 95a27267da
commit d21ebcb244
1 changed files with 1 additions and 1 deletions

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);
}