1package ExtUtils::MY;
2
3use strict;
4require ExtUtils::MM;
5
6our $VERSION = '6.98_01';
7our @ISA = qw(ExtUtils::MM);
8
9{
10    package MY;
11    our @ISA = qw(ExtUtils::MY);
12}
13
14sub DESTROY {}
15
16
17=head1 NAME
18
19ExtUtils::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
30B<FOR INTERNAL USE ONLY>
31
32ExtUtils::MY is a subclass of ExtUtils::MM.  Its provided in your
33Makefile.PL for you to add and override MakeMaker functionality.
34
35It also provides a convenient alias via the MY class.
36
37ExtUtils::MY might turn out to be a temporary solution, but MY won't
38go away.
39
40=cut
41