[svn:parrot] r37943 - trunk/tools/build

coke at svn.parrot.org coke at svn.parrot.org
Tue Apr 7 14:42:33 UTC 2009


Author: coke
Date: Tue Apr  7 14:42:33 2009
New Revision: 37943
URL: https://trac.parrot.org/parrot/changeset/37943

Log:
[cage] when warning about missing function docs, give the filename.

Modified:
   trunk/tools/build/headerizer.pl

Modified: trunk/tools/build/headerizer.pl
==============================================================================
--- trunk/tools/build/headerizer.pl	Tue Apr  7 14:38:45 2009	(r37942)
+++ trunk/tools/build/headerizer.pl	Tue Apr  7 14:42:33 2009	(r37943)
@@ -174,7 +174,7 @@
         my $heading = $headerizer->generate_documentation_signature($decl);
 
         $text =~ s/=item C<[^>]*\b$name\b[^>]*>\n+/$heading\n\n/sm or
-            warn "$name has no POD\n";
+            warn "$cfile_name: $name has no POD\n";
     }
     open( my $fhout, '>', $cfile_name ) or die "Can't create $cfile_name: $!";
     print {$fhout} $text;


More information about the parrot-commits mailing list