Speed up execution, by skipping over the /epoc32/build directory (which isn't released so doesn't need to be processed).
authorSimon Howkins <simonh@symbian.org>
Tue, 17 Nov 2009 11:15:36 +0000
changeset 114 5bbdda50c091
parent 113 0c3b152c1568
child 115 671e371caeef
Speed up execution, by skipping over the /epoc32/build directory (which isn't released so doesn't need to be processed).
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;