File was rendered obsolete a long time ago
authorSimon Howkins <simonh@symbian.org>
Tue, 02 Jun 2009 12:43:57 +0100
changeset 132 0e4f902f4da5
parent 131 1f3285cd5668
child 133 6bf16e4e9cb7
File was rendered obsolete a long time ago
common/tools/mergeepoc32.pl
--- a/common/tools/mergeepoc32.pl	Mon Jun 01 17:19:32 2009 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,26 +0,0 @@
-#!perl -w
-# Copyright (c) 2009 Symbian Foundation Ltd
-# This component and the accompanying materials are made available
-# under the terms of the License "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Symbian Foundation Ltd - initial contribution.
-# 
-# Contributors:
-#
-# Description:
-# Merges binaries from RnD repositories into the epoc32 tree used for the build
-
-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:");
-}
-