common/tools/zip_includefiles.pl
author William Roberts <williamr@symbian.org>
Wed, 17 Jun 2009 16:59:24 +0100
changeset 160 09e24be89e4b
parent 116 47cccedacd2d
permissions -rw-r--r--
Add the missing column heading in PkgComponentAnalysisSummary.csv

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