common/tools/zip_includefiles.pl
author Louis Henry Nayegon <louisn@symbian.org>
Thu, 17 Sep 2009 11:20:34 +0100
changeset 458 ef8c69f2539d
parent 116 47cccedacd2d
permissions -rw-r--r--
Add http download manager tests

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