common/tools/zip_includefiles.pl
author royt <tathagatar@symbian.org>
Fri, 14 Aug 2009 11:06:38 +0100
changeset 318 2f60611cdea9
parent 116 47cccedacd2d
permissions -rw-r--r--
change made in smoketest.xml

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