[ros-diffs] [fireball] 30980: - 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.
fireball at svn.reactos.org
fireball at svn.reactos.org
Mon Dec 3 10:56:12 CET 2007
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?rev=30980&r1=30979&r2=30980&view=diff
==============================================================================
--- 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 );
More information about the Ros-diffs
mailing list