Bug 191634

Summary: Missing @INC association
Product: Red Hat Enterprise Linux 4 Reporter: Zenon Panoussis <redhatbugs>
Component: perlAssignee: Jason Vas Dias <jvdias>
Status: CLOSED NOTABUG QA Contact: David Lawrence <dkl>
Severity: medium Docs Contact:
Priority: medium    
Version: 4.0CC: prockai
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2006-05-14 11:37:11 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Zenon Panoussis 2006-05-14 08:59:59 UTC
Description of problem:

# perl -MCPAN -e shell;
cpan> install Ogg::Vorbis::Header
Can't locate Inline/MakeMaker.pm in @INC (@INC contains: <snip long list>
cpan> quit

# locate MakeMaker.pm
/usr/lib/perl5/5.8.5/ExtUtils/MakeMaker.pm

IOW: ExtUtils::MakeMaker is part of the perl proper package and 
it's installed by default, but for some reason it's not associated 
in @INC. 

How reproducible:
Every time (CentOS, but they haven't changed the package).

Comment 1 Jason Vas Dias 2006-05-14 11:37:11 UTC
Your CPAN install is looking for Inline::MakeMaker, and is not checking for
its dependency on this module, as it should.
perl-Inline is not installed by any RHEL-4 RPM .
Try:
 $ perl -MCPAN -e shell;
 cpan> install Inline
 ...
first, and then your Ogg::Vorbis::Header install should proceed.