common/tools/zip_includefiles.pl
author Shabe Razvi <shaber@symbian.org>
Mon, 08 Jun 2009 15:58:51 +0100
changeset 142 247e27021cd0
parent 116 47cccedacd2d
permissions -rw-r--r--
Add <sf-getenv-tools> target to unpack tools baseline and also <sf-build-smoketestpkg> to create smoketest package to be sent to ATS3 server

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