summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-02-12 19:42:00 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-02-12 19:42:00 (GMT)
commit3f1a0ad7acd3f948108a6b0a70f73ddc4fe8f356 (patch)
tree3a41d31729efe899d35a4fc4b6c1d045d1c66a26
parentda6109df0f20dd871ddf43911c8313f57d77806c (diff)
parentccfeefae356241cd05ed06f595c697379620e512 (diff)
downloadCMake-3f1a0ad7acd3f948108a6b0a70f73ddc4fe8f356.zip
CMake-3f1a0ad7acd3f948108a6b0a70f73ddc4fe8f356.tar.gz
CMake-3f1a0ad7acd3f948108a6b0a70f73ddc4fe8f356.tar.bz2
Merge topic 'empty-compiler-crash'
ccfeefa Fix crash on empty CMAKE_<lang>_COMPILER value (#13901)
-rw-r--r--Source/cmake.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index d57e981..036440a 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -2084,7 +2084,7 @@ struct SaveCacheEntry
int cmake::HandleDeleteCacheVariables(const char* var)
{
std::vector<std::string> argsSplit;
- cmSystemTools::ExpandListArgument(std::string(var), argsSplit);
+ cmSystemTools::ExpandListArgument(std::string(var), argsSplit, true);
// erase the property to avoid infinite recursion
this->SetProperty("__CMAKE_DELETE_CACHE_CHANGE_VARS_", "");
if(this->GetIsInTryCompile())