Skip Menu |

This queue is for tickets about the Pod-Parser CPAN distribution.

Report information
The Basics
Id: 23618
Status: resolved
Worked: 10 min
Priority: 0/
Queue: Pod-Parser

People
Owner: Marek.Rouchal [...] gmx.net
Requestors: perl [...] galumph.com
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 1.35
Fixed in: 1.36



Subject: Current t/pod/find.t prevents installation in perls built with ~user in their paths.
Line 96 of find.t incorrectly uses $Config::Config{privlib}. It should use $Config::Config {privlibexp} instead. Patch attached.
Subject: Pod-Parser-1.35-find.t-privlib.patch
--- t.orig/pod/find.t 2006-11-25 13:51:09.000000000 -0800 +++ t/pod/find.t 2006-11-25 13:52:30.000000000 -0800 @@ -96,7 +96,7 @@ else { $compare = $ENV{PERL_CORE} ? File::Spec->catfile(File::Spec->updir, 'lib','File','Find.pm') - : File::Spec->catfile($Config::Config{privlib},"File","Find.pm"); + : File::Spec->catfile($Config::Config{privlibexp},"File","Find.pm"); ok(_canon($result),_canon($compare)); }
Thanks for the patch - will be applied in Pod-Parser-1.36 -Marek