diff options
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 62e6a65..86d881a 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -275,10 +275,10 @@ bool cmMakefile::ReadListFile(const char* filename, const char* external) if(usedCommand->GetEnabled()) { // if not running in inherit mode or - // if the command is inherited then Invoke it. + // if the command is inherited then InitialPass it. if(!inheriting || usedCommand->IsInherited()) { - if(!usedCommand->Invoke(arguments)) + if(!usedCommand->InitialPass(arguments)) { cmSystemTools::Error(usedCommand->GetName(), ": Error : \n", |