From 26ecd7731d5d3c336c1a001549f1aa541d7d6a15 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Thu, 6 Dec 2001 17:09:06 -0500 Subject: ENH: call convert to unix slashes for path and filepath entries --- Source/cmakewizard.cxx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/cmakewizard.cxx b/Source/cmakewizard.cxx index 50a75ba..5d4415d 100644 --- a/Source/cmakewizard.cxx +++ b/Source/cmakewizard.cxx @@ -24,6 +24,11 @@ void cmakewizard::AskUser(const char* key, cmCacheManager::CacheEntry & entry) if(entry) { entry->m_Value = buffer; + if(entry->m_Type == cmCacheManager::PATH || + entry->m_Type == cmCacheManager::FILEPATH) + { + cmSystemTools::ConvertToUnixSlashes(entry->m_Value); + } } else { -- cgit v0.12