Jelajahi Sumber

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

Sebastien Barre 24 tahun lalu
induk
melakukan
8a599b3569
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      Source/cmake.cxx

+ 1 - 1
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);
         }