Hi,

I'm having the following error;

Can't locate ExtUtils/MM_Cwd.pm in
../ExtUtils/MakeMaker.pm line 228.

Anyone an idea what's wrong here. The MakeMaker.pm version says 6.03. As
far as I know I can't upgrade this installation. I've looked on CPAN but
didn't find anything even close to MM_Cwd.

This seems to happen for more then one CPAN package (in fact all I tried
up to know).

The code;

sub eval_in_subdirs {
    my($self) = @_;
    use ExtUtils::MM_Cwd qw(cwd abs_path);
    my $pwd = cwd() || die "Can't figure out your cwd!";
    local @INC = map eval {abs_path($_) if -e} || $_, @INC;
    push @INC, '.';     # '.' has to always be at the end of @INC
    foreach my $dir (@{$self->{DIR}}){
        my($abs) = $self->catdir($pwd,$dir);
        $self->eval_in_x($abs);
    }
    chdir $pwd;
}

My system, is Sun Solaris 8/SPARC.

Thanks,
Frederik.

Reply via email to