Sat May 07 11:06:23 2016: Request 114229 was acted upon.
Transaction: Correspondence added by RSCHUPP
Queue: PAR-Packer
Subject: v1.32 still won't install on strawberry perl v5.22.2
Broken in: (no value)
Severity: (no value)
Owner: Nobody
Requestors: [email protected]
Status: new
Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=114229 >
On 2016-05-07 07:26:00, ZDM wrote:
> dmake: Error: -- Don't know how to make `test_dynamic'
> dmake.exe: Error code 255, while making 'subdirs-test_dynamic'
> FAIL
ExtUtils::MakeMaker changed its behaviour (and Strawberry is crazy to include
this version and not the one released with perl 5.22.2) :(
Apply the patch below, will be in the next release of PAR::Packer.
Cheers, Roderich
Index: myldr/Makefile.PL
===================================================================
--- myldr/Makefile.PL (revision 1679)
+++ myldr/Makefile.PL (working copy)
@@ -290,7 +290,7 @@
WriteMakefile(
NAME => "myldr",
- SKIP => [qw(static static_lib dynamic dynamic_lib test)],
+ SKIP => [qw(static static_lib dynamic dynamic_lib)],
NO_META => 1,
PL_FILES => {},
PM => { map { $_ => catfile('$(INST_LIBDIR)', qw( PAR
StrippedPARL ), $_) }
:;