bldsystemtools/commonbldutils/RemoveMASfromCBR.cmd
changeset 0 83f4b4db085c
child 2 99082257a271
equal deleted inserted replaced
-1:000000000000 0:83f4b4db085c
       
     1 @ECHO OFF
       
     2 @REM This batch file removes MAS (ActiveSync) from the CBR archive(s) indicated by RelTools.ini
       
     3 
       
     4 @REM SETLOCAL ensures that when we exit this batchfile, Current Directory and EPOCROOT will be restored to "as found" state.
       
     5 SETLOCAL
       
     6 
       
     7 @REM %BuildDir%\bin\%Platform% is the same as %OutputDir%. But we must not have a drive letter at the start of EPOCROOT.
       
     8 
       
     9 CD /d %BuildDir%\bin\%Platform%\generic
       
    10 @ECHO CD = %BuildDir%\bin\%Platform%\generic
       
    11 
       
    12 SET EPOCROOT=\bin\%Platform%\generic\
       
    13 @ECHO Calling RemoveRel -v mas
       
    14 Call RemoveRel -v mas
       
    15 @ECHO Calling RemoveRel -v techview_mas
       
    16 Call RemoveRel -v techview_mas
       
    17 
       
    18 CD /d %BuildDir%\bin\%Platform%\techview
       
    19 @ECHO CD = %BuildDir%\bin\%Platform%\techview
       
    20 
       
    21 SET EPOCROOT=\bin\%Platform%\techview\
       
    22 @ECHO Calling RemoveRel -v mas
       
    23 Call RemoveRel -v mas
       
    24 @ECHO Calling RemoveRel -v techview_mas
       
    25 Call RemoveRel -v techview_mas
       
    26