Author: dreimer
Date: Wed Dec 26 17:08:29 2007
New Revision: 31447
URL:
http://svn.reactos.org/svn/reactos?rev=31447&view=rev
Log:
Show more than 'make' or 'makex' in the title. Now it Shows 'make
bootcd' as an example.
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 Wed Dec 26 17:08:29 2007
@@ -95,10 +95,18 @@
:: Check if we are using -j or not.
::
if "%1" == "multi" (
- title 'makex' parallel build started: %TIMERAW%
+ if not "%2" == "" (
+ title 'makex %2' parallel build started: %TIMERAW%
+ ) else (
+ title 'makex' parallel build started: %TIMERAW%
+ )
call :BUILDMULTI %*
) else (
- title 'make' build started: %TIMERAW%
+ if not "%1" == "" (
+ title 'make %1' build started: %TIMERAW%
+ ) else (
+ title 'make' build started: %TIMERAW%
+ )
call :BUILD %*
)
goto :EOC