http://www.perlmonks.org?node_id=938873


in reply to Re^6: MakeMaker stops while make test
in thread MakeMaker stops while make test

I installed it into /usr/local/lib/perl5/5.12.2/ExtUtils/MakeMaker.pm. It has line a line "our $VERSION = '6.63_02';" ,so I think this is what I installed.

What does that mean, locally installed 6.63_02?

I mean "make installed" MakeMaker on my machine as local(which is 6.63_02). But "cpan MODULE" tries to fetch 6.62 MakeMaker from internet(not local). I am sorry for my bad english.

I put two output of MRO::Compat installation output.
First is manual installation.
tetsu# make cp lib/MRO/Compat.pm blib/lib/MRO/Compat.pm Manifying blib/man3/MRO::Compat.3 tetsu# make test PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_h +arness(0, 'inc', 'blib/lib', 'blib/arch')" t/*.t t/01use.t ........... ok t/02pod.t ........... ok t/03pod_coverage.t .. ok t/10basic.t ......... ok t/15pkg_gen.t ....... ok t/20mros.t .......... ok All tests successful. Files=6, Tests=32, 1 wallclock secs ( 0.07 usr 0.04 sys + 0.39 cusr + 0.10 csys = 0.60 CPU) Result: PASS
Next is output of "cpan MRO::Compat". it tries to install 6.62.
# cpan MRO::Compat CPAN: Storable loaded ok (v2.25) Going to read '/root/.cpan/Metadata' Database was generated on Thu, 17 Nov 2011 22:29:14 GMT Running install for module 'MRO::Compat' Running make for F/FL/FLORA/MRO-Compat-0.11.tar.gz CPAN: Digest::SHA loaded ok (v5.50) CPAN: Compress::Zlib loaded ok (v2.04) Checksum for /root/.cpan/sources/authors/id/F/FL/FLORA/MRO-Compat-0.11 +.tar.gz ok CPAN: File::Temp loaded ok (v0.22) CPAN: Parse::CPAN::Meta loaded ok (v1.4401) CPAN: Module::CoreList loaded ok (v2.42) ---- Unsatisfied dependencies detected during ---- ---- FLORA/MRO-Compat-0.11.tar.gz ---- ExtUtils::MakeMaker [build_requires] Running make test Make had some problems, won't test Delayed until after prerequisites Running make install Make had some problems, won't install Delayed until after prerequisites Running install for module 'ExtUtils::MakeMaker' Running make for M/MS/MSCHWERN/ExtUtils-MakeMaker-6.62.tar.gz Checksum for /root/.cpan/sources/authors/id/M/MS/MSCHWERN/ExtUtils-Mak +eMaker-6.62.tar.gz ok CPAN.pm: Going to build M/MS/MSCHWERN/ExtUtils-MakeMaker-6.62.tar.gz Checking if your kit is complete...
While copy & paste, I noticed cpan installation says "Make had some problems"... what does this mean???

I really appreciate your advice.

Replies are listed 'Best First'.
Re^8: MakeMaker stops while make test
by Anonymous Monk on Nov 18, 2011 at 16:14 UTC

    and what is perl -V?

    I would try switching to cpanp, like  cpanp i MRO::Compat

      perl -V shows like this. cpanplus worked fine! Thanks again.
      I am going to look for cpan's touble for a while. Maybe something is wrong with my configuration. If it becomes clear, I will report it.