[svn:parrot] r43210 - trunk/tools/dev

coke at svn.parrot.org coke at svn.parrot.org
Tue Dec 22 16:24:51 UTC 2009


Author: coke
Date: Tue Dec 22 16:24:50 2009
New Revision: 43210
URL: https://trac.parrot.org/parrot/changeset/43210

Log:
also skip dynoplibs, and skip earlier.

Modified:
   trunk/tools/dev/checkdepend.pl

Modified: trunk/tools/dev/checkdepend.pl
==============================================================================
--- trunk/tools/dev/checkdepend.pl	Tue Dec 22 16:19:41 2009	(r43209)
+++ trunk/tools/dev/checkdepend.pl	Tue Dec 22 16:24:50 2009	(r43210)
@@ -37,8 +37,8 @@
         local undef $/;
         $guts = <$fh>;
     }
+    next if $file =~ m{src/(ops|dynoplibs)/};
     my @includes = $guts =~ m/#include "(.*)"/g;
-    next if $file =~ m{ops/};
     $file =~ s/\.c$//;
     $deps{$file} = [ @includes ];
 }


More information about the parrot-commits mailing list