Your $PATH variable definitely sounds like the problem. More that likely the make is installed on your computer, but your shell can't find it. I usually can't remember where these things are kept, so I take a look at the man pages. By typing man make it gives you a pretty good description of what you are trying to do. In most cases, though, you also get the path for the command you are trying to run. When you have that, either run it directly (Solaris8 keeps it here):

/usr/ccs/bin/make

or put it in your path (ksh shown):

export PATH=$PATH:/usr/ccs/bin

Either way should solve your problem.



UPDATE: Rereading the above nodes, I realize that you probably don't have the compiler installed, and gcc is a good choice for that (mainly because it works good and I believe it's free distro!). This should not negate what I am trying to say here, though.

UPDATE2: Question to myself: Don't you have to have a compiler installed on your box in order to compile Perl? I guess if you installed a premade package on your Solaris box you might not.

Man I'm wishy-washy today.

Paulster2


In reply to Re: "make: not found" when installing Perl module (aka: Use the man, man!) by Paulster2
in thread "make: not found" when installing Perl module by perleager

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.