# HG changeset patch # User MattD # Date 1255351605 -3600 # Node ID a8f44c79e9dbebdd38af34e900313fb43792cd33 # Parent 212217a07072a226aeea03197ef824f0db4d7df2# Parent 7d99049bc47b8520d74b8a5022e1db7769fcd476 catchup merge. diff -r 212217a07072 -r a8f44c79e9db common/tools/populateziptemplate.pl --- 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;