BUG: change in how set cache overrides local definitions. Should mainly be a NOP change for most cases

This commit is contained in:
Ken Martin 2007-03-15 13:48:15 -04:00
parent daacd021fc
commit f52d37c26f
1 changed files with 2 additions and 1 deletions

View File

@ -1241,7 +1241,8 @@ void cmMakefile::AddCacheDefinition(const char* name, const char* value,
}
this->GetCacheManager()->AddCacheEntry(name, val, doc, type);
this->AddDefinition(name, val);
// if there was a definition then remove it
this->Definitions.erase( DefinitionMap::key_type(name));
}