diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-17 22:00:06 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-17 22:00:06 +0000 |
commit | 93fe06f7e621580f8d9f3c5f09bdd8f2131c2336 (patch) | |
tree | aa9a550d176d1f41e306961f8ea6ffe3929d909f /installman | |
parent | 36bad43a54a7c90a90f0ef3c464b4224dbc21068 (diff) | |
download | perl-93fe06f7e621580f8d9f3c5f09bdd8f2131c2336.tar.gz |
Detypos.
p4raw-id: //depot/perl@10151
Diffstat (limited to 'installman')
-rwxr-xr-x | installman | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installman b/installman index 4a6416323c..dad91820cf 100755 --- a/installman +++ b/installman @@ -82,7 +82,7 @@ while (<UTILS>) { $_ = $1 if /#.*pod\s*=\s*(\S+)/; my ($where, $what) = m|^(.*?)/(\S+)|; runpod2man($where, $opts{man1dir}, $opts{man1ext}, $what); - if (($where, $what) = m|#.*link\s*=\s*(\S+)/(\S+)| { + if (($where, $what) = m|#.*link\s*=\s*(\S+)/(\S+)|) { runpod2man($where, $opts{man1dir}, $opts{man1ext}, $what); } } |