BUG: change in how set cache overrides local definitions. Should mainly be a NOP change for most cases
This commit is contained in:
parent
daacd021fc
commit
f52d37c26f
|
@ -1241,7 +1241,8 @@ void cmMakefile::AddCacheDefinition(const char* name, const char* value,
|
||||||
|
|
||||||
}
|
}
|
||||||
this->GetCacheManager()->AddCacheEntry(name, val, doc, type);
|
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));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue