diff options
author | Brad King <brad.king@kitware.com> | 2009-09-11 14:04:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-11 14:04:10 (GMT) |
commit | 74b79d3b3996c1aed1d11ddfc06278f7f880454d (patch) | |
tree | 1096254426a8da346dff22462a6582402b99e321 /Source/cmake.cxx | |
parent | 7a409fd573721ae4346bee682d80fb285ab98497 (diff) | |
download | CMake-74b79d3b3996c1aed1d11ddfc06278f7f880454d.zip CMake-74b79d3b3996c1aed1d11ddfc06278f7f880454d.tar.gz CMake-74b79d3b3996c1aed1d11ddfc06278f7f880454d.tar.bz2 |
Remove barely-used cmCacheManager::AddCacheEntry
The commit "Remove barely-used cmMakefile::AddCacheDefinition" removed
all but one use of the cmCacheManager method 'bool' overload. This
commit removes the other use and the entire method, thus reducing code
duplication.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 7866fb2..a3555b9 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -2153,8 +2153,9 @@ int cmake::ActualConfigure() if(!this->CacheManager->GetCacheValue("CMAKE_USE_RELATIVE_PATHS")) { this->CacheManager->AddCacheEntry - ("CMAKE_USE_RELATIVE_PATHS", false, - "If true, cmake will use relative paths in makefiles and projects."); + ("CMAKE_USE_RELATIVE_PATHS", "OFF", + "If true, cmake will use relative paths in makefiles and projects.", + cmCacheManager::BOOL); cmCacheManager::CacheIterator it = this->CacheManager->GetCacheIterator("CMAKE_USE_RELATIVE_PATHS"); if ( !it.PropertyExists("ADVANCED") ) |