MM_Unix.pm : work around File::Find problem on VMS
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / MM_DOS.pm
CommitLineData
f6d6199c 1package ExtUtils::MM_DOS;
2
3use strict;
4use vars qw($VERSION @ISA);
5
6$VERSION = 0.01;
7
daf16542 8require ExtUtils::MM_Any;
9require ExtUtils::MM_Unix;
10@ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
f6d6199c 11
12
13=head1 NAME
14
daf16542 15ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
f6d6199c 16
17=head1 SYNOPSIS
18
19 Don't use this module directly.
20 Use ExtUtils::MM and let it choose.
21
22=head1 DESCRIPTION
23
daf16542 24This is a subclass of ExtUtils::MM_Unix which contains functionality
f6d6199c 25for DOS.
26
daf16542 27Unless otherwise stated, it works just like ExtUtils::MM_Unix
f6d6199c 28
29=head2 Overridden methods
30
31=over 4
32
33=item B<replace_manpage_separator>
34
35=cut
36
37sub replace_manpage_separator {
38 my($self, $man) = @_;
39
40 $man =~ s,/+,__,g;
41 return $man;
42}
43
44=back
45
46=head1 AUTHOR
47
48Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix
49
50=head1 SEE ALSO
51
daf16542 52L<ExtUtils::MM_Unix>, L<ExtUtils::MakeMaker>
f6d6199c 53
daf16542 54=cut
f6d6199c 551;