common/tools/zip_includefiles.pl
author MattD <mattd@symbian.org>
Fri, 19 Jun 2009 16:00:11 +0100
changeset 167 87306c6a6632
parent 116 47cccedacd2d
permissions -rw-r--r--
Packaging change - Tools now zipped into 'tools_epoc.zip', which isn't 'emu' but 'tools' for package and platform builds. Should work when we update the metadata.

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