Author: peterw
Date: Thu Dec 6 22:57:46 2007
New Revision: 31051
URL:
http://svn.reactos.org/svn/reactos?rev=31051&view=rev
Log:
- Change title setting in Build.cmd.
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/Bui…
==============================================================================
--- trunk/tools/RosBE/RosBE-Windows/Root/Build.cmd (original)
+++ trunk/tools/RosBE/RosBE-Windows/Root/Build.cmd Thu Dec 6 22:57:46 2007
@@ -9,8 +9,6 @@
::
::
@echo off
-
-title Building...
::
:: Check if config.template.rbuild is newer than config.rbuild, if it is then
@@ -96,10 +94,11 @@
::
:: Check if we are using -j or not.
::
-title Started: %TIMERAW%, Building...
if "%1" == "multi" (
+ title 'makex' parallel build started: %TIMERAW%
call :BUILDMULTI %*
) else (
+ title 'make' build started: %TIMERAW%
call :BUILD %*
)
goto :EOC