in reply to Re: make install problems
in thread make install problems

+ 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