The disturbing difference in your error is that the directory that it is failing to create is not the same as the one which it says you can't read. This, and the fact that your directory isn't a magical one like /usr/bin, leads me to suspect these are different problems.
Definitely the very first thing you should check is whether you do, in fact, have write permissions on /. Since you're installing perl in your home directory, I'm guessing you don't have write permission on / . Can you repeat your test on a system where you do ?
My steps to installing Devel::Cover and DBI::SQLite were as follows;
- unpack the tar
- perl Makefile.PL (which equates to your ./configure call)
- grep '/usr/bin' *
- edit Make (where I found /usr/bin in the previous step), substituting /usr/bin_00, /usr/bin_01, /usr/bin_02 etc, so I could see exactly which variable was being used
- make
- make test *
- make install
So you might find something in the Make file for DynaLoader pointing to lib/auto, but I wouldn't hope for much. Finding references to / is going to be impossible.
* make test failed for Devel::Cover due to a different problem.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.