common/tools/zip_includefiles.pl
author Louis Henry Nayegon <louisn@symbian.org>
Fri, 24 Jul 2009 09:49:57 +0100
changeset 276 140d2eb79802
parent 116 47cccedacd2d
permissions -rw-r--r--
Add keyevent test at end of apploader test suite to remove prompt for location/time settings Remove redundant batch file. Use perl script instead.

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