diff options
author | Brad King <brad.king@kitware.com> | 2013-02-12 19:42:00 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-02-12 19:42:00 (GMT) |
commit | 3f1a0ad7acd3f948108a6b0a70f73ddc4fe8f356 (patch) | |
tree | 3a41d31729efe899d35a4fc4b6c1d045d1c66a26 | |
parent | da6109df0f20dd871ddf43911c8313f57d77806c (diff) | |
parent | ccfeefae356241cd05ed06f595c697379620e512 (diff) | |
download | CMake-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.cxx | 2 |
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()) |