From 8a599b3569b652f4317f3e5814f5ca81fe575b09 Mon Sep 17 00:00:00 2001 From: Sebastien Barre Date: Fri, 18 Jan 2002 14:07:17 -0500 Subject: [PATCH] Fix: escaping spaces was preventing a value with space to be passed correctly --- Source/cmake.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 640803058..388c7e9e4 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -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); }