common/tools/zip_includefiles.pl
author Shabe Razvi <shaber@symbian.org>
Fri, 29 May 2009 17:44:02 +0100
changeset 125 a4079a41ca7f
parent 116 47cccedacd2d
permissions -rw-r--r--
Exclude list of things from RnD unpack that we know we can build

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