diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-01-23 21:36:13 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-01-23 21:36:13 (GMT) |
commit | 1ff49b9789216042bcb9ee9e8c859da116b229ee (patch) | |
tree | c6a928352625664434191caaf8d6ab73f09576c0 /Source | |
parent | 7f237c51f413a350090e68929eee9f8380c5bcfe (diff) | |
download | CMake-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.cxx | 1 |
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; |