common/tools/zip_includefiles.pl
author Simon Howkins <simonh@symbian.org>
Tue, 18 Aug 2009 14:40:13 +0100
changeset 361 023e28d6bf31
parent 116 47cccedacd2d
permissions -rw-r--r--
Moved all targets specific to the postbuild phase of the build into the postbuild ant file.

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