This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
The current CPAN is very noisy on download failure;
[perl5.git] / lib / ExtUtils / MY.pm
CommitLineData
f6d6199c
MS
1package ExtUtils::MY;
2
3use strict;
4require ExtUtils::MM;
5
b6d6132c 6our $VERSION = 6.55_01;
a592ba15 7our @ISA = qw(ExtUtils::MM);
f6d6199c
MS
8
9{
10 package MY;
a592ba15 11 our @ISA = qw(ExtUtils::MY);
f6d6199c
MS
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