mirror of
https://github.com/reactos/CMake.git
synced 2025-02-10 05:42:45 +00:00
ENH: call convert to unix slashes for path and filepath entries
This commit is contained in:
parent
683c54b787
commit
26ecd7731d
@ -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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user