summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2002-01-22 15:17:37 (GMT)
committerBrad King <brad.king@kitware.com>2002-01-22 15:17:37 (GMT)
commit8ed3ce29bf3b185ecc0f8b5132cac497f4150e0b (patch)
treec3aca1b0fbbc12d23eb248e20c90da27cd8a2ad7 /Source/cmMakefile.cxx
parent0e0e4c1a1a0121c4afb6974b93b3c1aa701fc2e8 (diff)
downloadCMake-8ed3ce29bf3b185ecc0f8b5132cac497f4150e0b.zip
CMake-8ed3ce29bf3b185ecc0f8b5132cac497f4150e0b.tar.gz
CMake-8ed3ce29bf3b185ecc0f8b5132cac497f4150e0b.tar.bz2
ERR: Removed cmCacheManager::DefineCache method. It is no longer needed.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 506130a..deead3e 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -52,7 +52,6 @@ cmMakefile::cmMakefile()
this->AddSourceGroup("Header Files", "\\.(h|hh|hpp|hxx|hm|inl)$");
this->AddDefaultCommands();
this->AddDefaultDefinitions();
- cmCacheManager::GetInstance()->DefineCache(this);
}
unsigned int cmMakefile::GetCacheMajorVersion()
@@ -885,7 +884,7 @@ const char *cmMakefile::ExpandVariablesInString(std::string& source,
bool atOnly) const
{
// This method replaces ${VAR} and @VAR@ where VAR is looked up
- // in the m_Definitions map, if not found in the map, nothing is expanded.
+ // with GetDefinition(), if not found in the map, nothing is expanded.
// It also supports the $ENV{VAR} syntax where VAR is looked up in
// the current environment variables.