bintools/evalid/evalid.bat
changeset 2 39c28ec933dd
equal deleted inserted replaced
1:820b22e13ff1 2:39c28ec933dd
       
     1 @rem
       
     2 @rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 @rem All rights reserved.
       
     4 @rem This component and the accompanying materials are made available
       
     5 @rem under the terms of the License "Eclipse Public License v1.0"
       
     6 @rem which accompanies this distribution, and is available
       
     7 @rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 @rem
       
     9 @rem Initial Contributors:
       
    10 @rem Nokia Corporation - initial contribution.
       
    11 @rem
       
    12 @rem Contributors:
       
    13 @rem
       
    14 @rem Description: 
       
    15 @rem
       
    16 
       
    17 
       
    18 @echo off
       
    19 
       
    20 perl -w -S evalid.pl %*
       
    21 if errorlevel==1 goto CheckPerl
       
    22 goto End
       
    23 
       
    24 :CheckPerl
       
    25 perl -v >NUL
       
    26 if errorlevel==1 echo Is Perl, version 5.003_07, installed?
       
    27 goto End
       
    28 
       
    29 :End