common/tools/zip_includefiles.pl
author Simon Howkins <simonh@symbian.org>
Tue, 11 Aug 2009 11:49:23 +0100
changeset 286 348670fc497a
parent 139 47cccedacd2d
permissions -rw-r--r--
Added output of the package definition incorporated for each package.

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