Shankar wrote: > 1. perl Makefile.PL > 2. make > 3. make test > 4. make install (This fails, I think, because I don't have any root or > super user permissions to make a site-wide install. Is that correct? > > Steps 1 and 2 succeeded. > Step 3 in each of the modules that I attempted to install on my home > directory, gives an error that seems to say none of the *.t files are > readable.
Is the t/ directory executable? UNIX has a quirk where a directory must be readable and executable to gain access to its files. If a directory is readable but not executable, you can read the names of the files but you can't access their i-nodes. That means, you can't access their contents. You can list the names with `ls` but trying to access their i-nodes fails, like with `ls -l`. -- Just my 0.00000002 million dollars worth, Shawn Programming is as much about organization and communication as it is about coding. I like Perl; it's the only language where you can bless your thingy. -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/