[Module-build-checkins] [svn:Module-Build] r6017 - Module-Build/trunk/lib/Module/Build
Status: Beta
Brought to you by:
kwilliams
From: <kwi...@cv...> - 2006-05-04 00:55:45
|
Author: kwilliams Date: Wed May 3 17:55:22 2006 New Revision: 6017 Modified: Module-Build/trunk/lib/Module/Build/Base.pm Log: Replace a vestigial 'next' with a 'return' now that it's in a subroutine, not a loop. Modified: Module-Build/trunk/lib/Module/Build/Base.pm ============================================================================== --- Module-Build/trunk/lib/Module/Build/Base.pm (original) +++ Module-Build/trunk/lib/Module/Build/Base.pm Wed May 3 17:55:22 2006 @@ -2503,7 +2503,7 @@ my $pods = $self->_find_pods( $self->{properties}{"${type}doc_dirs"}, exclude => [ qr/\.(?:bat|com|html)$/ ] ); - next unless %$pods; # nothing to do + return unless %$pods; # nothing to do unless ( -d $htmldir ) { File::Path::mkpath($htmldir, 0, 0755) |