in reply to Re: Perl 5.8.8 installation issue, Cwd test hanging, solaris 2.9
in thread Perl 5.8.8 installation issue, Cwd test hanging, solaris 2.9
It appears there was somthing in my root directory that wasn't to the code's liking, so I just took the first successful hit of the file test operators and bailed out of the loop. I'm fairly certain I didn't compromise the accuracy of the test, but please let me know if you see a problem with what I did.# this is the line I removed # ($file) = grep {-f $_ and not -l $_} map File::Spec->catfile($roo +t, $_), readdir FH; # and replaced with this foreach my $x (readdir(FH)) { my $y = File::Spec->catfile($root, $x); if (-f $y && ! -l $y) { $file = $y; last; } }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Perl 5.8.8 installation issue, Cwd test hanging, solaris 2.9
by diotalevi (Canon) on Jan 23, 2007 at 21:14 UTC |