common/tools/mergeepoc32.pl
author Mike Kinghan <mikek@symbian.org>
Tue, 26 May 2009 11:39:48 +0100
changeset 128 3aef06ac7a6a
parent 104 5e724ff842b4
child 131 d33d43677cdf
permissions -rw-r--r--
Fixed minor bug in ats3_testdrop.pl: Quote marks within quotation needed to be escaped.

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