I can't tell from the error messages, but it may be that you have a permission problem. You may need to use su to do your make-ing as root.

The first error about "/usr/bin/make not OK" suggests to me that you can't even run make with your present permissions. This could arise if you have chosen very stringent default permissions for your files, in which case your permissions would default to 0700, "-rwx------". This means that only root would be able to run or even see its files.

You can check for this situation by typing the following: 'l /usr/bin/make', of course omitting the single-quotes. Look at the resulting listing, if any. If you get an error "Permission denied", then your default permissions are too stringent, and non-root users can't see or execute files owned by root. You'll need to change the permissions as root. If you *do* get a listing, it will probably resemble something like this: -rwxr--r--. If you only see one 'x', then you again need to give execute permissions to non-root users.

Finally, if you get a "No such file or directory" error, you may need to go back to your YaST installation and make sure you install the required programs. Check under "development" and make sure you have installed Perl, make, gcc, and the other programs needed to compile source code.


In reply to Re: perl modules installation error by spiritway
in thread perl modules installation error by sybella1

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.