+ export PERL5LIB=/home/erickn/perllib
+ echo /home/erickn/perllib
/home/erickn/perllib
+ perl Makefile.PL LIB=/home/erickn/perllib
Writing Makefile for File::Temp
+ make test
PERL_DL_NONLAZY=1 /usr/local/bin/perl -Iblib/arch -Iblib/lib -I/usr/local/lib/perl5/5.00503/sun4-solaris -I/usr/local/lib/perl5/5.00 503 -e 'use Test::Harness qw(&runtests $verbose); $verbose=0; runtests @ARGV;' t/*.t
t/mktemp............File::Spec version 0.8 required--this is only version 0.6 at blib/lib/File/Temp.pm line 124.
BEGIN failed--compilation aborted at blib/lib/File/Temp.pm line 124.
BEGIN failed--compilation aborted at t/mktemp.t line 12.
dubious
Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 1-9
Failed 9/9 tests, 0.00% okay
t/posix.............File::Spec version 0.8 required--this is only version 0.6 at blib/lib/File/Temp.pm line 124.
BEGIN failed--compilation aborted at blib/lib/File/Temp.pm line 124.
BEGIN failed--compilation aborted at t/posix.t line 8.
dubious
Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 1-7
Failed 7/7 tests, 0.00% okay
t/security..........File::Spec version 0.8 required--this is only version 0.6 at blib/lib/File/Temp.pm line 124.
BEGIN failed--compilation aborted at blib/lib/File/Temp.pm line 124.
BEGIN failed--compilation aborted at t/security.t line 20.
dubious
Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 1-13
Failed 13/13 tests, 0.00% okay
t/tempfile..........File::Spec version 0.8 required--this is only version 0.6 at blib/lib/File/Temp.pm line 124.
BEGIN failed--compilation aborted at blib/lib/File/Temp.pm line 124.
BEGIN failed--compilation aborted at t/tempfile.t line 35.
dubious
Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 1-20
Failed 20/20 tests, 0.00% okay
Failed Test Status Wstat Total Fail Failed List of failed
-------------------------------------------------------------------------------
t/mktemp.t 255 65280 9 9 100.00% 1-9
t/posix.t 255 65280 7 7 100.00% 1-7
t/security.t 255 65280 13 13 100.00% 1-13
t/tempfile.t 255 65280 20 20 100.00% 1-20
Failed 4/4 test scripts, 0.00% okay. 49/49 subtests failed, 0.00% okay.
*** Error code 2
make: Fatal error: Command failed for target `test_dynamic'

just to make sure I did a test to see what version of File::Spec was installed in /home/erickn/perllib
so, I ran the following program...
use lib "/home/erickn/perllib";
use File::Spec;
print "$File::Spec::VERSION\n";

and it returned
0.82

In reply to still fails, here's more detail by mifflin
in thread make install problems by mifflin

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.