Fix: escaping spaces was preventing a value with space to be passed correctly

This commit is contained in:
Sebastien Barre 2002-01-18 14:07:17 -05:00
parent 475364ac48
commit 8a599b3569
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ void cmake::SetCacheArgs(cmMakefile& builder,
{
cmCacheManager::GetInstance()->AddCacheEntry(
var.c_str(),
cmSystemTools::EscapeSpaces(value.c_str()).c_str(),
value.c_str(),
"No help, variable specified on the command line.",
type);
}