[ros-diffs] [dreimer] 31447: Show more than 'make' or 'makex' in the title. Now it Shows 'make bootcd' as an example.

dreimer at svn.reactos.org dreimer at svn.reactos.org
Wed Dec 26 15:08:30 CET 2007


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/Build.cmd?rev=31447&r1=31446&r2=31447&view=diff
==============================================================================
--- 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




More information about the Ros-diffs mailing list