common/tools/mergeepoc32.pl
author Shabe Razvi <shaber@symbian.org>
Tue, 12 May 2009 14:47:47 +0100
changeset 91 786a0a00701e
parent 81 5e724ff842b4
child 108 d33d43677cdf
permissions -rw-r--r--
1) Update binary packaging solution to invoke 7za directly. 2) Add partially complete ATS sf-send-testpkg target and associated tools

#!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:");
}