Browse Source

cmMakefile: Swap parameters of calls to ReadListFile.

The version with a null first parameter is now equivalent.
Stephen Kelly 10 years ago
parent
commit
d21ebcb244
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmMakefile.cxx

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