diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-09-10 16:58:33 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-09-10 16:58:33 +0100 |
commit | b78fd7160df924147ff968f6dc2796473af0c484 (patch) | |
tree | b5065e5b1ab461c11c74b5a0b4f848fcd0c3f118 /utils | |
parent | 4d984b75f1859fc27f556ee42f31a04df42a2004 (diff) | |
download | perl-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 'utils')
-rw-r--r-- | utils/instmodsh.PL | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/instmodsh.PL b/utils/instmodsh.PL index 3bc0359f6e..36b885866c 100644 --- a/utils/instmodsh.PL +++ b/utils/instmodsh.PL @@ -33,7 +33,10 @@ $Config{startperl} use File::Spec; -my $instmodsh = File::Spec->catfile(File::Spec->catdir(File::Spec->updir, "lib", "ExtUtils"), "instmodsh"); +my $instmodsh + = File::Spec->catfile(File::Spec->catdir(File::Spec->updir, + qw(ext ExtUtils-MakeMaker bin + instmodsh))); if (open(INSTMODSH, $instmodsh)) { print OUT <INSTMODSH>; |