diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-09-26 20:18:52 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-09-27 10:08:07 (GMT) |
commit | 203eada65ea33f5739c99096d18619fbec0ec135 (patch) | |
tree | 5cfbc5ff3e09288e97597b369ad817d5cce3cef6 /Source/cmMakefile.cxx | |
parent | 5642449a69b7e8ed0a0fbaf1607ef34ebae239c6 (diff) | |
download | CMake-203eada65ea33f5739c99096d18619fbec0ec135.zip CMake-203eada65ea33f5739c99096d18619fbec0ec135.tar.gz CMake-203eada65ea33f5739c99096d18619fbec0ec135.tar.bz2 |
cmMakefile: Remove Configured state.
It is vestigial.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 6480667..c70756a 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -54,7 +54,6 @@ cmMakefile::cmMakefile(cmGlobalGenerator* globalGenerator, this->WarnUnused = this->GetCMakeInstance()->GetWarnUnused(); this->CheckSystemVars = this->GetCMakeInstance()->GetCheckSystemVars(); - this->Configured = false; this->SuppressWatches = false; // Setup the default include file regular expression (match everything). @@ -1658,7 +1657,6 @@ void cmMakefile::Configure() cmParseFileScope pfs(this); if (!listFile.ParseFile(currentStart.c_str(), this->IsRootMakefile(), this)) { - this->SetConfigured(); return; } } @@ -1679,7 +1677,6 @@ void cmMakefile::Configure() } this->AddCMakeDependFilesFromUser(); - this->SetConfigured(); } void cmMakefile::ConfigureSubDirectory(cmMakefile *mf) @@ -1723,7 +1720,6 @@ void cmMakefile::ConfigureSubDirectory(cmMakefile *mf) // NEW behavior prints the error. this->IssueMessage(cmake::FATAL_ERROR, e.str()); } - mf->SetConfigured(); return; } // finally configure the subdir |