in reply to Re: /usr/bin/make error on Mac os x
in thread /usr/bin/make error on Mac os x

From the configuration, obviously :)

http://perl5.git.perl.org/perl.git/blob/978b5c81acdd9245251f6182632db23eb26ff2fb:/lib/CPAN.pm

4564 $system = join " ", $CPAN::Config->{'make'}, $CPAN::Config->{ +make_arg}; 4565 if (system($system) == 0) { 4566 $CPAN::Frontend->myprint(" $system -- OK\n"); 4567 $self->{'make'} = "YES"; 4568 } else { 4569 $self->{writemakefile} ||= "YES"; 4570 $self->{'make'} = "NO"; 4571 $CPAN::Frontend->myprint(" $system -- NOT OK\n"); 4572 }
So when CPAN::FirstTime::init() was prompting the OP for values for CPAN::Config, a k sneaked into bin :)

Replies are listed 'Best First'.
Re^3: /usr/bin/make error on Mac os x
by Symphesis (Initiate) on Apr 19, 2011 at 20:58 UTC
    I found this section of the code without problem, but I'm very bad with code. Do I need to add something or delete something? I used the search function, but I couldn't find any "bink" sections in the code. I'm sorry I'm so lost. I appreciate your help.
      You could reinitialize your config by calling CPAN::FirstTime::init() , something like
      perl -MCPAN::FirstTime -e ' CPAN::FirstTime::init() '