diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-06 17:19:15 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-06 17:19:15 (GMT) |
commit | 99221554236a3b39601d798ca3f793990e22a4a1 (patch) | |
tree | 2f73b9adf5ed692bb44d2a14782b38c1fc715d38 /Source/cmMakefile.cxx | |
parent | 72e8b44793dfa7881479d8746397b87a572b99f9 (diff) | |
download | CMake-99221554236a3b39601d798ca3f793990e22a4a1.zip CMake-99221554236a3b39601d798ca3f793990e22a4a1.tar.gz CMake-99221554236a3b39601d798ca3f793990e22a4a1.tar.bz2 |
ENH: rename Invoke to InitialPass
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", |