This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Configure: infnan for mixed-endian double-double
[perl5.git] / installhtml
index 3b1eda8..06342a8 100644 (file)
@@ -500,12 +500,12 @@ sub installdir {
        no_upwards($_) or next;
        my $is_dir = -d "$podroot/$dir/$_";
        next if $is_dir and not $recurse;
-       my $target = (
-           $is_dir    ? \@dirlist :
-           s/\.pod$// ? \@podlist :
-           s/\.pm$//  ? \@pmlist  :
-           undef
-       );
+       my $target
+           = $is_dir    ? \@dirlist
+           : s/\.pod$// ? \@podlist
+           : s/\.pm$//  ? \@pmlist
+           undef
+           ;
        push @$target, "$dir/$_" if $target;
     }