common/tools/zip_includefiles.pl
author MattD <mattd@symbian.org>
Mon, 10 Aug 2009 10:50:40 +0100
changeset 310 8337c2afc41f
parent 116 47cccedacd2d
permissions -rw-r--r--
Split sf-run-analysis into bit-sized targets, which can run in parallel to reduce the post-build time on a platform build.

#!perl -w

use strict;

my @includefiles = glob "*_includefile.txt";
foreach (@includefiles)
{
    my $includefilename=$_;
	if (m/(.*)(_includefile.txt)/) {
		my $zipfilename = $1.".zip";
		system("7za a -tzip -i@".$includefilename . " " .$zipfilename);
	}
}