This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update ExtUtils::ParseXS to 2.20_01
[perl5.git] / lib / ExtUtils / MY.pm
1 package ExtUtils::MY;
2
3 use strict;
4 require ExtUtils::MM;
5
6 our $VERSION = 6.53_03;
7 our @ISA = qw(ExtUtils::MM);
8
9 {
10     package MY;
11     our @ISA = qw(ExtUtils::MY);
12 }
13
14 sub DESTROY {}
15
16
17 =head1 NAME
18
19 ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
20
21 =head1 SYNOPSIS
22
23   # in your Makefile.PL
24   sub MY::whatever {
25       ...
26   }
27
28 =head1 DESCRIPTION
29
30 B<FOR INTERNAL USE ONLY>
31
32 ExtUtils::MY is a subclass of ExtUtils::MM.  Its provided in your
33 Makefile.PL for you to add and override MakeMaker functionality.
34
35 It also provides a convenient alias via the MY class.
36
37 ExtUtils::MY might turn out to be a temporary solution, but MY won't
38 go away.
39
40 =cut