author | MattD <mattd@symbian.org> |
Mon, 12 Oct 2009 13:46:45 +0100 | |
changeset 646 | a8f44c79e9db |
parent 645 | 212217a07072 (current diff) |
parent 644 | 7d99049bc47b (diff) |
child 647 | 4d2a89833fea |
--- a/common/tools/populateziptemplate.pl Mon Oct 12 13:45:33 2009 +0100 +++ b/common/tools/populateziptemplate.pl Mon Oct 12 13:46:45 2009 +0100 @@ -213,6 +213,9 @@ # Output all rnd files into exclude list for later open my $fh, ">", $rndExcludes or die "Cannot write exlude file!"; -print $fh @allRndFiles; +foreach (@allRndFiles) +{ + print $fh "$_\n"; +} close $fh;