Thu Jan 06 04:24:12 2011: Request 64485 was acted upon.
Transaction: Correspondence added by DJIBEL
Queue: PAR-Packer
Subject: pp PodStrip module included
Broken in: 1.008
Severity: Important
Owner: RSCHUPP
Requestors: [email protected]
Status: resolved
Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=64485 >
Le Mer 05 Jan 2011 14:13:20, RSCHUPP a écrit :
> > It is possible to tell to pp when I run pp -o test.exe perlcritic.pl
> > to disabled PodStrip on Perl::Critic::* modules ?
>
> Setting PAR_VERBATIM=1 in the environment will prevent pp
> from applying the PodStrip filter.
>
> This behaviour is documented, but unfortunately only in the pod of PAR.pm.
> I've commited a similar remark to the pod of pp.pm
>
> Cheers, Roderich
Thank you Roderich, it is work very well now.
$ENV{PAR_VERBATIM} = 1;
system("pp -o test.exe test.pl");
OR
SET PAR_VERBATIM=1 && pp -o test.exe test.pl
Best Regards,
DJIBEL