summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-01-23 21:36:13 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-01-23 21:36:13 (GMT)
commit1ff49b9789216042bcb9ee9e8c859da116b229ee (patch)
treec6a928352625664434191caaf8d6ab73f09576c0 /Source
parent7f237c51f413a350090e68929eee9f8380c5bcfe (diff)
downloadCMake-1ff49b9789216042bcb9ee9e8c859da116b229ee.zip
CMake-1ff49b9789216042bcb9ee9e8c859da116b229ee.tar.gz
CMake-1ff49b9789216042bcb9ee9e8c859da116b229ee.tar.bz2
ENH: by Bill make sure path is unix style
Diffstat (limited to 'Source')
-rw-r--r--Source/kwsys/SystemTools.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx
index cd3526c..ee59852 100644
--- a/Source/kwsys/SystemTools.cxx
+++ b/Source/kwsys/SystemTools.cxx
@@ -2389,6 +2389,7 @@ kwsys_stl::string SystemTools::CollapseFullPath(const char* in_path,
SystemTools::CheckTranslationPath(newPath);
#ifdef _WIN32
newPath = SystemTools::GetActualCaseForPath(newPath.c_str());
+ SystemTools::ConvertToUnixSlashes(newPath);
#endif
// Return the reconstructed path.
return newPath;