# HG changeset patch # User Simon Howkins # Date 1258456536 0 # Node ID 5bbdda50c091267a763e8f18d9fbfe04b3eccf7c # Parent 0c3b152c156822d9edbc63ea76dcd0366e4bb061 Speed up execution, by skipping over the /epoc32/build directory (which isn't released so doesn't need to be processed). diff -r 0c3b152c1568 -r 5bbdda50c091 williamr/convert_to_eula.pl --- 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;