diff options
author | Brad King <brad.king@kitware.com> | 2009-09-10 20:59:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-10 20:59:45 (GMT) |
commit | ee2b446c953f278eefff44f964f6e39cdc0fff78 (patch) | |
tree | 0f4213c3893cd8f6e30c6c878230b4c8680e33c5 /Source/cmSetCommand.cxx | |
parent | afbe0883094afddb7cbaedcb8d89031ef503ed3b (diff) | |
download | CMake-ee2b446c953f278eefff44f964f6e39cdc0fff78.zip CMake-ee2b446c953f278eefff44f964f6e39cdc0fff78.tar.gz CMake-ee2b446c953f278eefff44f964f6e39cdc0fff78.tar.bz2 |
Create CMake Policy CMP0015 to fix set(CACHE)
The set(CACHE) and option() commands should always expose the cache
value. Previously we failed to expose the value when it was already set
if a local variable definition hid it. When set to NEW, this policy
tells the commands to always remove the local variable definition to
expose the cache value. See issue #9008.
Diffstat (limited to 'Source/cmSetCommand.cxx')
-rw-r--r-- | Source/cmSetCommand.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmSetCommand.cxx b/Source/cmSetCommand.cxx index b9b2b7c..e2714b6 100644 --- a/Source/cmSetCommand.cxx +++ b/Source/cmSetCommand.cxx @@ -160,6 +160,7 @@ bool cmSetCommand // or the makefile if(cache && type != cmCacheManager::INTERNAL && !force) { + this->Makefile->UseCacheDefinition(it); return true; } } |