common/tools/mergeepoc32.pl
changeset 193 19a76650e06d
parent 192 d5964b46ccaf
parent 139 7f5b4e3699cb
child 194 bc231dead82b
equal deleted inserted replaced
192:d5964b46ccaf 193:19a76650e06d
     1 #!perl -w
       
     2 # Copyright (c) 2009 Symbian Foundation Ltd
       
     3 # This component and the accompanying materials are made available
       
     4 # under the terms of the License "Eclipse Public License v1.0"
       
     5 # which accompanies this distribution, and is available
       
     6 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 #
       
     8 # Initial Contributors:
       
     9 # Symbian Foundation Ltd - initial contribution.
       
    10 # 
       
    11 # Contributors:
       
    12 #
       
    13 # Description:
       
    14 # Merges binaries from RnD repositories into the epoc32 tree used for the build
       
    15 
       
    16 use strict;
       
    17 
       
    18 # Assume that all rnd repositories are delivered onto the build machine in \rnd\category\name\epoc32\...
       
    19 
       
    20 my @rndRepositories = glob "/rnd/*/*";
       
    21 foreach (@rndRepositories)
       
    22 {
       
    23 	s{/}{\\}g;
       
    24 	system("xcopy /Q/C/I/Y/E $_\\epoc32 \\epoc32 > nul:");
       
    25 }
       
    26