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