Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6226/lib/Module/Build
Modified Files:
Base.pm
Log Message:
Fix a return-too-early bug
Index: Base.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v
retrieving revision 1.474
retrieving revision 1.475
diff -u -d -r1.474 -r1.475
--- Base.pm 11 Aug 2005 09:36:45 -0000 1.474
+++ Base.pm 11 Aug 2005 11:58:30 -0000 1.475
@@ -2142,7 +2142,7 @@
my $outfile = File::Spec->catfile($fulldir, "${name}.html");
my $infile = File::Spec->abs2rel($pod);
- return if $self->up_to_date($infile, $outfile);
+ next if $self->up_to_date($infile, $outfile);
unless ( -d $fulldir ){
File::Path::mkpath($fulldir, 0, 0755)
|