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