common/tools/zip_includefiles.pl
author Simon Howkins <simonh@symbian.org>
Tue, 11 Aug 2009 15:56:05 +0100
changeset 345 26128bd2e266
parent 116 47cccedacd2d
permissions -rw-r--r--
Un-hardwired an interim location for the system definition. Removed a target that is over-ridden in both the platform and package specific files.

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