ENH: by Bill make sure path is unix style

This commit is contained in:
Ken Martin 2006-01-23 16:36:13 -05:00
parent 7f237c51f4
commit 1ff49b9789
1 changed files with 1 additions and 0 deletions

View File

@ -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;