Subject: | Duplicate paths in @INC |
With the PERL5LIB trickery inside Straps analyze_file(), _filtered_INC
() doesn't actually filter the redundant paths in @INC as expected -
reason the absence of the below.
--- Straps.pm.orig Tue Feb 3 05:41:11 2009
+++ Straps.pm Wed Mar 25 12:16:38 2009
@@ -479,6 +479,7 @@
local $ENV{PERL5LIB};
my @inc =`$perl -le "print join qq[\\n], \@INC"`;
chomp @inc;
+ return @inc;
}];
return @{$cache{$perl}};
}
Please fix this.
Rajesh