common/tools/mergeepoc32.pl
author ThomasE@UK-ThomasE.symbian.int
Wed, 13 May 2009 16:25:14 +0100
changeset 94 5e9bdb9269c7
parent 81 5e724ff842b4
child 108 d33d43677cdf
permissions -rw-r--r--
Modified populateziptemplate.pl to use "oss" instead of "epl" keyword.

#!perl -w
use strict;

# Assume that all rnd repositories are delivered onto the build machine in \rnd\category\name\epoc32\...

my @rndRepositories = glob "/rnd/*/*";
foreach (@rndRepositories)
{
	s{/}{\\}g;
	system("xcopy /Q/C/I/Y/E $_\\epoc32 \\epoc32 > nul:");
}