summaryrefslogtreecommitdiff
path: root/installman
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-12-23 19:58:50 +0100
committerNicholas Clark <nick@ccl4.org>2011-12-24 10:29:43 +0100
commit3301e5d1d80db6afd0532fdaa48c8fa8006cff23 (patch)
tree5d59558693dad0dd03d5d8d8afe3038d00ece919 /installman
parente1aae8e422ead7f20e21203fb7fb1e8ad7387c2b (diff)
downloadperl-3301e5d1d80db6afd0532fdaa48c8fa8006cff23.tar.gz
Some tidying in installman.
Avoid the unnecessary lexicals $xnew and $xold. Use lexicals for file handles, and check the return of close. Why import mkpath() from File::Path and then comment its provenance at the point of use? Remove an exit(0) which is only 20 lines from the end of the script. Note why we can't re-use a file handle open on the Pod file we're currently processing.
Diffstat (limited to 'installman')
-rwxr-xr-xinstallman40
1 files changed, 19 insertions, 21 deletions
diff --git a/installman b/installman
index f8e00e5172..5f0a7a6f4f 100755
--- a/installman
+++ b/installman
@@ -8,7 +8,7 @@ BEGIN {
use strict;
use Getopt::Long;
-use File::Path qw(mkpath);
+require File::Path;
use ExtUtils::Packlist;
use Pod::Man;
use vars qw(%opts $packlist);
@@ -75,8 +75,8 @@ pod2man(\%man1, $opts{man1dir}, $opts{man1ext}, 'pod');
# Install the pods embedded in the installed scripts
my $has_man1dir = $opts{man1dir} ne '' && -d $opts{man1dir};
-open UTILS, "utils.lst" or die "Can't open 'utils.lst': $!";
-while (<UTILS>) {
+my $fh = open_or_die('utils.lst');
+while (<$fh>) {
next if /^#/;
chomp;
my ($path, $leaf) = m|^(\S*/(\S+))|;
@@ -89,14 +89,13 @@ while (<UTILS>) {
my $new = "$opts{man1dir}/$link.$opts{man1ext}";
unlink($new);
link($old, $new);
- my $xold = $old;
- $xold =~ s/^\Q$opts{'destdir'}\E// if $opts{'destdir'};
- my $xnew = $new;
- $xnew =~ s/^\Q$opts{'destdir'}\E// if $opts{'destdir'};
- $packlist->{$xnew} = { from => $xold, type => 'link' };
+ $old =~ s/^\Q$opts{destdir}\E// if $opts{destdir};
+ $new =~ s/^\Q$opts{destdir}\E// if $opts{destdir};
+ $packlist->{$new} = { from => $old, type => 'link' };
}
}
}
+close $fh or my_die("close 'utils.lst': $!");
sub pod2man {
my($modpods, $mandir, $manext, $where) = @_;
@@ -119,23 +118,24 @@ sub pod2man {
}
}
- mkpath($mandir, $opts{verbose}, 0777) unless $opts{notify}; # In File::Path
+ File::Path::mkpath($mandir, $opts{verbose}, 0777) unless $opts{notify};
foreach my $manpage (sort keys %$modpods) {
my $mod = $modpods->{$manpage};
# Skip files without pod docs
my $has_pod;
- if (open T, $mod)
- {
- local $_;
- while (<T>)
- {
- ++$has_pod and last if /^=head1\b/;
- }
-
- close T;
- }
+ my $fh = open_or_die($mod);
+ while (my $line = <$fh>) {
+ if ($line =~ /^=head1\b/) {
+ ++$has_pod;
+ last;
+ }
+ }
+ close $fh or my_die("close '$mod': $!");
+ # Sadly it doesn't seem possible to re-use this handle for the call
+ # to parse_from_file() below, as Pod::Man relies on source_filename(),
+ # which Pod::Simple only sets accurately if it opens the file itself.
unless ($has_pod)
{
@@ -171,8 +171,6 @@ sub pod2man {
$packlist->write() unless $opts{notify};
print " Installation complete\n" if $opts{verbose};
-exit 0;
-
sub rename {
my($from,$to) = @_;
if (-f $to and not unlink($to)) {