From 1ff49b9789216042bcb9ee9e8c859da116b229ee Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Mon, 23 Jan 2006 16:36:13 -0500 Subject: [PATCH] ENH: by Bill make sure path is unix style --- Source/kwsys/SystemTools.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index cd3526ca5..ee5985250 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;