Speed up execution, by skipping over the /epoc32/build directory (which isn't released so doesn't need to be processed).
--- a/williamr/convert_to_eula.pl Mon Nov 16 15:07:57 2009 +0000
+++ b/williamr/convert_to_eula.pl Tue Nov 17 11:15:36 2009 +0000
@@ -119,6 +119,8 @@
{
my ($path, $shadow) = @_;
+ return if lc $path eq "/epoc32/build";
+
opendir DIR, $path;
my @files = grep !/^\.\.?$/, readdir DIR;
closedir DIR;