summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2002-01-18 19:07:17 (GMT)
committerSebastien Barre <sebastien.barre@kitware.com>2002-01-18 19:07:17 (GMT)
commit8a599b3569b652f4317f3e5814f5ca81fe575b09 (patch)
treefd238265be07703226f0f3f9bd040c07bd4ab657 /Source/cmake.cxx
parent475364ac4846a9624804f1059cc45b5a32d638c2 (diff)
downloadCMake-8a599b3569b652f4317f3e5814f5ca81fe575b09.zip
CMake-8a599b3569b652f4317f3e5814f5ca81fe575b09.tar.gz
CMake-8a599b3569b652f4317f3e5814f5ca81fe575b09.tar.bz2
Fix: escaping spaces was preventing a value with space to be passed correctly
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 6408030..388c7e9 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);
}