Author: fireball Date: Mon Dec 3 12:56:11 2007 New Revision: 30980
URL: http://svn.reactos.org/svn/reactos?rev=30980&view=rev Log: - 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.
Modified: trunk/reactos/tools/rbuild/directory.cpp
Modified: trunk/reactos/tools/rbuild/directory.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/directory.cpp?... ============================================================================== --- trunk/reactos/tools/rbuild/directory.cpp (original) +++ trunk/reactos/tools/rbuild/directory.cpp Mon Dec 3 12:56:11 2007 @@ -125,6 +125,7 @@ if ( isalpha ( path[0] ) && path[1] == ':' && path[2] == cSep ) { nextIndex = path.find ( cSep, 3); + index = path.find ( cSep ); } else nextIndex = path.find ( cSep );