diff options
author | Joe Buehler <jbuehler@hekimian.com> | 1998-08-29 13:13:28 -0400 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-09-23 06:41:34 +0000 |
commit | 2ebcf328f2f6a477ae1d821fa26a32def4a81660 (patch) | |
tree | 0fce993b73d3fff7c3c57976373c22b62fc16d24 /lib | |
parent | 6e68dac881cea847d8831bc4b3fdb32ae55b843d (diff) | |
download | perl-2ebcf328f2f6a477ae1d821fa26a32def4a81660.tar.gz |
patches for perl 5.005_51 under U/WIN
Message-ID: <yd37lzro5jb.fsf@pandora.hekimian.com>
p4raw-id: //depot/perl@1823
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExtUtils/MM_Unix.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index 9a96504b75..e979f7aeba 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -2943,7 +2943,11 @@ form Foo/Bar and replaces the slash with C<::>. Returns the replacement. sub replace_manpage_separator { my($self,$man) = @_; - $man =~ s,/+,::,g; + if ($^O eq 'uwin') { + $man =~ s,/+,.,g; + } else { + $man =~ s,/+,::,g; + } $man; } |