- Don't try to perform "mkdir Z:" (where Z: is your ROS_INSTALL target disk), that's meaningless. Fixes an exception when built with MSVC.

svn path=/trunk/; revision=30980
This commit is contained in:
Aleksey Bragin 2007-12-03 09:56:11 +00:00
parent 3f543f3230
commit 56568e2d0c

View file

@ -125,6 +125,7 @@ Directory::CreateDirectory ( const string& path )
if ( isalpha ( path[0] ) && path[1] == ':' && path[2] == cSep )
{
nextIndex = path.find ( cSep, 3);
index = path.find ( cSep );
}
else
nextIndex = path.find ( cSep );