diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-12-19 20:44:39 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-12-21 09:07:27 +0100 |
commit | 2ce3647c0f381c639a29f710db854a3f5953ed55 (patch) | |
tree | 368c1cec82375d8f0fb0c8131e94f929740b4f2e /installman | |
parent | dc4373008ad8232b22c089a9e42f59b45e7c78a1 (diff) | |
download | perl-2ce3647c0f381c639a29f710db854a3f5953ed55.tar.gz |
Re-order entries in the 'master' array returned by get_pod_metadata().
Now it returns just the pod's name, its filename, and the flags (if any).
Diffstat (limited to 'installman')
-rwxr-xr-x | installman | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installman b/installman index 37d9699f6b..fb43e85bb4 100755 --- a/installman +++ b/installman @@ -74,7 +74,7 @@ my %do_not_install = map { ($_ => 1) } qw( # Install the main pod pages. pod2man({ map { - ($_->[4], $_->[2]) + ($_->[0], $_->[1]) } @{$state->{master}} }, $opts{man1dir}, $opts{man1ext}); |