Author: peterw
Date: Sat Oct 27 18:50:36 2007
New Revision: 29916
URL:
http://svn.reactos.org/svn/reactos?rev=29916&view=rev
Log:
- Couple of small fixes.
Modified:
trunk/tools/RosBE-Windows/Root/Build.cmd
trunk/tools/RosBE-Windows/Root/Config.cmd
trunk/tools/RosBE-Windows/Root/RosBE.cmd
trunk/tools/RosBE-Windows/Root/options.cmd
Modified: trunk/tools/RosBE-Windows/Root/Build.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Build.cmd…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Build.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Build.cmd Sat Oct 27 18:50:36 2007
@@ -16,13 +16,13 @@
:: Check if config.template.rbuild is newer than config.rbuild, if it is then
:: abort the build and inform the user.
::
-if exist "%_ROSBE_BASEDIR%\config.rbuild" (
- chknewer "config.template.rbuild"
"%_ROSBE_BASEDIR%\config.rbuild"
- if not errorlevel 1 (
+if exist .\config.rbuild (
+ chknewer .\config.template.rbuild .\config.rbuild
+ if errorlevel 1 (
echo.
echo *** config.template.rbuild is newer than config.rbuild ***
- echo *** aborting build. Please update your config.rbuild ***
- echo *** by typeing "config update". ***
+ echo *** aborting build. Please check for changes and ***
+ echo *** update your config.rbuild. ***
echo.
goto :EOB
)
@@ -83,9 +83,9 @@
mkdir "%_ROSBE_LOGDIR%" 1> NUL 2> NUL
if errorlevel 1 (
echo.
- echo *** Writing logs requested, but log directory doesn't ***
- echo *** exist and can't be created. Logs will be created ***
- echo *** in the current directory as a fallback. ***
+ echo *** Writing logs requested, but the log directory ***
+ echo *** doesn't exist and can't be created. Logs will be ***
+ echo *** created in the current directory as a fallback. ***
echo.
set _ROSBE_LOGDIR=%CD%
)
Modified: trunk/tools/RosBE-Windows/Root/Config.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Config.cm…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Config.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Config.cmd Sat Oct 27 18:50:36 2007
@@ -84,9 +84,9 @@
:: Check if config.template.rbuild is newer than config.rbuild, if it is then
:: inform the user and offer an update.
::
-if exist "%_ROSBE_BASEDIR%\config.rbuild" (
- chknewer "config.template.rbuild"
"%_ROSBE_BASEDIR%\config.rbuild"
- if not errorlevel 1 (
+if exist .\config.rbuild (
+ chknewer .\config.template.rbuild .\config.rbuild
+ if errorlevel 1 (
echo.
echo *** config.template.rbuild is newer than working config.rbuild ***
echo *** The Editor cannot continue with this file. Do you wanna ***
Modified: trunk/tools/RosBE-Windows/Root/RosBE.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/RosBE.cmd…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/RosBE.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/RosBE.cmd Sat Oct 27 18:50:36 2007
@@ -119,6 +119,7 @@
doskey /macrofile="%_ROSBE_BASEDIR%\RosBE.mac"
if not exist "%_ROSBE_BASEDIR%\chdefdir.cmd" ( doskey CHDEFDIR= )
+ if not exist "%_ROSBE_BASEDIR%\chdefgcc.cmd" ( doskey CHDEFGCC= )
if not exist "%_ROSBE_BASEDIR%\Config.cmd" ( doskey CONFIG= )
if not exist "%_ROSBE_BASEDIR%\reladdr2line.cmd" ( doskey RADDR2LINE= )
if not exist "%_ROSBE_BASEDIR%\scut.cmd" ( doskey SCUT= )
Modified: trunk/tools/RosBE-Windows/Root/options.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/options.c…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/options.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/options.cmd Sat Oct 27 18:50:36 2007
@@ -22,5 +22,6 @@
)
) else (
echo ERROR: options.exe was not found.
- title ReactOS Build Environment %_ROSBE_VERSION%
)
+
+title ReactOS Build Environment %_ROSBE_VERSION%