Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15030/lib/Module/Build
Modified Files:
Base.pm
Log Message:
Obfuscate one of our constructs that uses a $VERSION variable
Index: Base.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v
retrieving revision 1.550
retrieving revision 1.551
diff -u -d -r1.550 -r1.551
--- Base.pm 27 Feb 2006 02:29:50 -0000 1.550
+++ Base.pm 2 Mar 2006 21:28:09 -0000 1.551
@@ -2726,7 +2726,8 @@
$self->output_fh($_[1]) if $_[1];
$self->$old_parse_file($_[0]);
}
- if $Pod::Text::VERSION == 3.01;
+ if $Pod::Text::VERSION
+ == 3.01; # Split line to avoid evil version-finder
Pod::Text::pod2text( $docfile, $fh );
|