summaryrefslogtreecommitdiff
path: root/lib/ExtUtils/MY.pm
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-09-10 16:58:33 +0100
committerNicholas Clark <nick@ccl4.org>2009-09-10 16:58:33 +0100
commitb78fd7160df924147ff968f6dc2796473af0c484 (patch)
treeb5065e5b1ab461c11c74b5a0b4f848fcd0c3f118 /lib/ExtUtils/MY.pm
parent4d984b75f1859fc27f556ee42f31a04df42a2004 (diff)
downloadperl-b78fd7160df924147ff968f6dc2796473af0c484.tar.gz
Move ExtUtils::MakeMaker from lib to ext.
t/lib/TieOut.pm is now from Test::Simple. Only the tests needed changing. The exceptions to BEGIN/PERL_CORE/INC boilerplate removal were two instances of "../.." becoming "../../../..", and changing an %INC test from "strict.pm" to "less.pm", as TestInit causes strict to be loaded via a relative path, when it loads File::Spec to convert all paths from relative to absolute.
Diffstat (limited to 'lib/ExtUtils/MY.pm')
-rw-r--r--lib/ExtUtils/MY.pm40
1 files changed, 0 insertions, 40 deletions
diff --git a/lib/ExtUtils/MY.pm b/lib/ExtUtils/MY.pm
deleted file mode 100644
index c1a8c94a69..0000000000
--- a/lib/ExtUtils/MY.pm
+++ /dev/null
@@ -1,40 +0,0 @@
-package ExtUtils::MY;
-
-use strict;
-require ExtUtils::MM;
-
-our $VERSION = 6.55_02;
-our @ISA = qw(ExtUtils::MM);
-
-{
- package MY;
- our @ISA = qw(ExtUtils::MY);
-}
-
-sub DESTROY {}
-
-
-=head1 NAME
-
-ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
-
-=head1 SYNOPSIS
-
- # in your Makefile.PL
- sub MY::whatever {
- ...
- }
-
-=head1 DESCRIPTION
-
-B<FOR INTERNAL USE ONLY>
-
-ExtUtils::MY is a subclass of ExtUtils::MM. Its provided in your
-Makefile.PL for you to add and override MakeMaker functionality.
-
-It also provides a convenient alias via the MY class.
-
-ExtUtils::MY might turn out to be a temporary solution, but MY won't
-go away.
-
-=cut