Simplified the locations of some generated files, so they are created where they need to be rather than created on one place and moved to another.
Zipping of binaries now assumes that there's always an rnd exclude file, as it is always created by populateziptemplate.pl, even if there's nothing put into it.
#!perl -w
use strict;
# Sorts the input, removes duplicates, and outputs it
# Read it
my @content = <>;
# Sort it, and grep to remove duplicates
my $previous = "\n\n";
@content = grep {$_ ne $previous && ($previous = $_, 1) } sort @content;
# Write it
print @content;