[svn:parrot] r43424 - branches/one_make/tools/dev

mikehh at svn.parrot.org mikehh at svn.parrot.org
Tue Jan 12 11:50:37 UTC 2010


Author: mikehh
Date: Tue Jan 12 11:50:37 2010
New Revision: 43424
URL: https://trac.parrot.org/parrot/changeset/43424

Log:
fix codetest failures - pod syntax and trailing spaces

Modified:
   branches/one_make/tools/dev/checkdepend.pl

Modified: branches/one_make/tools/dev/checkdepend.pl
==============================================================================
--- branches/one_make/tools/dev/checkdepend.pl	Tue Jan 12 11:43:53 2010	(r43423)
+++ branches/one_make/tools/dev/checkdepend.pl	Tue Jan 12 11:50:37 2010	(r43424)
@@ -32,7 +32,7 @@
 them. Ack is used to find the files. We are not currently requiring ack
 for development, so this is an optional test.
 
-=heads BUGS
+=head1 BUGS
 
 The pre-processing of the makefile doesn't follow make's behavior: variables
 should have no value until they are defined; in our pre-processing, their
@@ -104,10 +104,10 @@
     my @includes;
     while ($guts =~ m/\.include\s+(["'])(.*)\1/g) {
         push @includes, $2;
-    } 
+    }
     while ($guts =~ m/\bload_bytecode\s+(["'])(.*)\1/g) {
         push @includes, $2;
-    } 
+    }
 
     # Canonicalize each of these includes.
 


More information about the parrot-commits mailing list