[ros-diffs] [dreimer] 38757: If the specified OBJ and OUT Paths are non existant, don't just abort. Create them and continue.

dreimer at svn.reactos.org dreimer at svn.reactos.org
Wed Jan 14 13:32:00 CET 2009


Author: dreimer
Date: Wed Jan 14 06:32:00 2009
New Revision: 38757

URL: http://svn.reactos.org/svn/reactos?rev=38757&view=rev
Log:
If the specified OBJ and OUT Paths are non existant, don't just abort. Create them and continue.

Modified:
    trunk/tools/RosBE/RosBE-Windows/Root/Build.cmd

Modified: trunk/tools/RosBE/RosBE-Windows/Root/Build.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/Root/Build.cmd?rev=38757&r1=38756&r2=38757&view=diff
==============================================================================
--- trunk/tools/RosBE/RosBE-Windows/Root/Build.cmd [iso-8859-1] (original)
+++ trunk/tools/RosBE/RosBE-Windows/Root/Build.cmd [iso-8859-1] Wed Jan 14 06:32:00 2009
@@ -81,19 +81,16 @@
 ::
 if defined _ROSBE_OBJPATH (
     if not exist "%_ROSBE_OBJPATH%\." (
-        echo ERROR: The Object-Path specified doesn't seem to exist.
-        goto :EOC
-    ) else (
-        set ROS_INTERMEDIATE=%_ROSBE_OBJPATH%
-    )
+        echo WARNING: The Object-Path specified doesn't seem to exist. Creating...
+    )
+    set ROS_INTERMEDIATE=%_ROSBE_OBJPATH%
 )
 if defined _ROSBE_OUTPATH (
     if not exist "%_ROSBE_OUTPATH%\." (
-        echo ERROR: The Output-Path specified doesn't seem to exist.
-        goto :EOC
-    ) else (
-        set ROS_OUTPUT=%_ROSBE_OUTPATH%
-        set ROS_TEMPORARY=%_ROSBE_OUTPATH%
+        echo WARNING: The Output-Path specified doesn't seem to exist. Creating...
+    )
+    set ROS_OUTPUT=%_ROSBE_OUTPATH%
+    set ROS_TEMPORARY=%_ROSBE_OUTPATH%
     )
 )
 



More information about the Ros-diffs mailing list