common/tools/zip_includefiles.pl
author Dario Sestito <darios@symbian.org>
Fri, 19 Jun 2009 10:10:05 +0100
changeset 205 863cc9c0bf03
parent 116 47cccedacd2d
permissions -rw-r--r--
Added output stream to failures line in yarp. Made the failure string more robust

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