File Coverage

lib/ExtUtils/MY.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod n/a
total 4 5 80.0


line stmt bran cond sub pod time code
1              
2             use strict;
3 52     52   303 require ExtUtils::MM;
  52         92  
  52         5198  
4              
5             our $VERSION = '7.64';
6             $VERSION =~ tr/_//d;
7             our @ISA = qw(ExtUtils::MM);
8              
9             {
10             our @ISA = qw(ExtUtils::MY);
11              
12              
13              
14             =head1 NAME
15       0      
16             ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
17              
18             =head1 SYNOPSIS
19              
20             # in your Makefile.PL
21             sub MY::whatever {
22             ...
23             }
24              
25             =head1 DESCRIPTION
26              
27             B<FOR INTERNAL USE ONLY>
28              
29             ExtUtils::MY is a subclass of L<ExtUtils::MM>. Its provided in your
30             Makefile.PL for you to add and override MakeMaker functionality.
31              
32             It also provides a convenient alias via the MY class.
33              
34             ExtUtils::MY might turn out to be a temporary solution, but MY won't
35             go away.
36              
37             =cut