Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10266/lib/Module/Build
Modified Files:
Base.pm
Log Message:
Quit htmlifying early when there is nothing to htmlify.
Index: Base.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v
retrieving revision 1.471
retrieving revision 1.472
diff -u -d -r1.471 -r1.472
--- Base.pm 4 Aug 2005 03:13:05 -0000 1.471
+++ Base.pm 4 Aug 2005 06:47:34 -0000 1.472
@@ -2041,6 +2041,7 @@
my $pods = $self->_find_pods( $self->{properties}{"${type}doc_dirs"},
exclude => [ qr/\.(?:bat|com|html)$/ ] );
+ next unless %$pods; # nothing to do
my $podpath = join ':',
map $_->[1],
|