cross-plat-dev-utils/prep_env.pl
changeset 2 39c28ec933dd
equal deleted inserted replaced
1:820b22e13ff1 2:39c28ec933dd
       
     1 #!/usr/bin/perl
       
     2 
       
     3 # Copyright (c) 2010 Symbian Foundation Ltd
       
     4 # This component and the accompanying materials are made available
       
     5 # under the terms of the License "Eclipse Public License v1.0"
       
     6 # which accompanies this distribution, and is available
       
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 #
       
     9 # Initial Contributors:
       
    10 # Mike Kinghan, mikek@symbian.org for Symbian Foundation Ltd - initial contribution.
       
    11 
       
    12 # Script to make any necessary patches to the host environment.
       
    13 
       
    14 use strict;
       
    15 use usage;
       
    16 use perl_run;
       
    17 
       
    18 usage(\@ARGV,"This script makes all required fixes to the Linux host environment");
       
    19 perl_run("fix_epoc32.pl") and die $!;
       
    20 perl_run("fix_raptor_config.pl") and die $!;
       
    21 exit 0;