# HG changeset patch # User Simon Howkins # Date 1255350390 -3600 # Node ID 7d99049bc47b8520d74b8a5022e1db7769fcd476 # Parent e981400ef2ee703cefc9778414e225cb09e38738 Fixed generation of rnd excludes file, so there are the necessary new-lines. diff -r e981400ef2ee -r 7d99049bc47b common/tools/populateziptemplate.pl --- a/common/tools/populateziptemplate.pl Mon Oct 12 11:52:51 2009 +0100 +++ b/common/tools/populateziptemplate.pl Mon Oct 12 13:26:30 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;