common/tools/zip_includefiles.pl
author MattD <mattd@symbian.org>
Mon, 17 Aug 2009 14:26:30 +0100
changeset 358 881cbdd44910
parent 139 47cccedacd2d
permissions -rw-r--r--
platform build temporary patch - overidden sf-build-noprep to not generate the model from the fragments. Needed for split model builds and furhter work on simplifying model.

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