bcarroll has asked for the wisdom of the Perl Monks concerning the following question:

I am able to compile (perl Makefile.PL && make) the Compress-Raw-Zlib module, but when I run make dist I get an error stating Can't locate ExtUtils/Manifest.pm in @INC...
I have verified that ExtUtils/Manifest.pm does exist in one of the directories included in @INC, but for some reason make dist isn't finding it.

Any ideas?

Replies are listed 'Best First'.
Re: Missing module errors while running make dist
by toolic (Bishop) on Jun 20, 2012 at 01:07 UTC
    corelist shows that ExtUtils::Manifest should already be installed since it is a Core module:
    corelist ExtUtils::Manifest ExtUtils::Manifest was first released with perl 5.001

    Compress::Raw::Zlib is also Core in recent Perl's:

    corelist Compress::Raw::Zlib Compress::Raw::Zlib was first released with perl v5.9.4
Re: Missing module errors while running make dist
by Khen1950fx (Canon) on Jun 20, 2012 at 03:05 UTC