Skip to content
Snippets Groups Projects
Commit 8b40267e authored by Bill Hoffman's avatar Bill Hoffman
Browse files

ENH: remove /tmp_mnt in collapse full path

parent 6a20fae9
No related branches found
No related tags found
No related merge requests found
......@@ -692,7 +692,6 @@ void SystemTools::ConvertToUnixSlashes(kwsys_std::string& path)
}
// if there is a /tmp_mnt in a path get rid of it!
// stupid sgi's
if(path.find("/tmp_mnt") == 0)
{
path = path.substr(8);
......@@ -1302,6 +1301,11 @@ kwsys_std::string SystemTools::CollapseFullPath(const char* in_relative,
{
newDir = SystemTools::GetCurrentWorkingDirectory();
}
// if there is a /tmp_mnt in a path get rid of it!
if(newDir.find("/tmp_mnt") == 0)
{
newDir = newDir.substr(8);
}
#endif
// Restore original working directory.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment