This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Bump the $VERSION of File::stat (documentation changed).
[perl5.git] / lib / ExtUtils / MM_VOS.pm
CommitLineData
7292dc67
RGS
1package ExtUtils::MM_VOS;
2
3use strict;
a65cb92d 4our $VERSION = '6.47_02';
7292dc67
RGS
5
6require ExtUtils::MM_Unix;
a592ba15 7our @ISA = qw(ExtUtils::MM_Unix);
7292dc67
RGS
8
9
10=head1 NAME
11
12ExtUtils::MM_VOS - VOS specific subclass of ExtUtils::MM_Unix
13
14=head1 SYNOPSIS
15
16 Don't use this module directly.
17 Use ExtUtils::MM and let it choose.
18
19=head1 DESCRIPTION
20
21This is a subclass of ExtUtils::MM_Unix which contains functionality for
22VOS.
23
24Unless otherwise stated it works just like ExtUtils::MM_Unix
25
26=head2 Overridden methods
27
28=head3 extra_clean_files
29
30Cleanup VOS core files
31
32=cut
33
34sub extra_clean_files {
35 return qw(*.kp);
36}
37
38
39=head1 AUTHOR
40
41Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix
42
43=head1 SEE ALSO
44
45L<ExtUtils::MakeMaker>
46
47=cut
48
49
501;