common/tools/zip_includefiles.pl
author Matt Davies <mattd@symbian.org>
Wed, 10 Jun 2009 12:34:20 +0100
changeset 146 f31749863421
parent 116 47cccedacd2d
permissions -rw-r--r--
parsewhatlog.pl - regex bug fix for raptor 2.7.2

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