You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If make (or equivalent) isn't installed, bootstrapping will fail mysteriously. I just beat my head into the wall trying to figure out the problem until I remembered that build-essential wasn't installed.
local::lib should check that $Config{make} is in PATH and abort with a helpful error.
The text was updated successfully, but these errors were encountered:
Using $CPAN::Config{make} would be more correct, but I don't entirely trust running that on its own, since afaik it's intended to be interpreted by the shell (or at least system()).
If
make
(or equivalent) isn't installed, bootstrapping will fail mysteriously. I just beat my head into the wall trying to figure out the problem until I remembered that build-essential wasn't installed.local::lib should check that
$Config{make}
is inPATH
and abort with a helpful error.The text was updated successfully, but these errors were encountered: