projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e846b3
)
[ID 20000824.029] MakeMaker manifypods fails on DJGPP systems
author
Peter J. Farley III
<pjfarley@banet.net>
Thu, 24 Aug 2000 21:58:03 +0000
(17:58 -0400)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Fri, 25 Aug 2000 17:05:43 +0000
(17:05 +0000)
Message-Id: <4.3.1.0.
20000824215500
.
00ac3df0
@pop5.banet.net>
(applied slightly modified)
p4raw-id: //depot/perl@6811
lib/ExtUtils/MM_Unix.pm
patch
|
blob
|
history
diff --git
a/lib/ExtUtils/MM_Unix.pm
b/lib/ExtUtils/MM_Unix.pm
index
0721dc9
..
c3fa99a
100644
(file)
--- a/
lib/ExtUtils/MM_Unix.pm
+++ b/
lib/ExtUtils/MM_Unix.pm
@@
-3178,9
+3178,11
@@
form Foo/Bar and replaces the slash with C<::>. Returns the replacement.
sub replace_manpage_separator {
my($self,$man) = @_;
if ($^O eq 'uwin') {
- $man =~ s,/+,.,g;
+ $man =~ s,/+,.,g;
+ } elsif ($Is_Dos) {
+ $man =~ s,/+,__,g;
} else {
-
$man =~ s,/+,::,g;
+ $man =~ s,/+,::,g;
}
$man;
}