Skip Menu |

This queue is for tickets about the Unicode-Collate CPAN distribution.

Report information
The Basics
Id: 133311
Status: resolved
Priority: 0/
Queue: Unicode-Collate

People
Owner: Nobody in particular
Requestors: TODDR [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.27
Fixed in: 1.28



Subject: Make Makefile.PL strict
We're looking at cleaning up perl blead and noticed that Makefile.PL is not strict. Patch attached to fix it.
Subject: UC.patch.txt
diff --git a/cpan/Unicode-Collate/Makefile.PL b/cpan/Unicode-Collate/Makefile.PL index 1cb39a88e0..e6137f6a94 100644 --- a/cpan/Unicode-Collate/Makefile.PL +++ b/cpan/Unicode-Collate/Makefile.PL @@ -1,5 +1,6 @@ require 5.006001; use ExtUtils::MakeMaker; +use strict; my $clean = {}; @@ -21,11 +22,11 @@ WriteMakefile( 'VERSION_FROM' => 'Collate.pm', # finds $VERSION 'clean' => $clean, 'PREREQ_PM' => { - Carp => 0, - File::Spec => 0, - XSLoader => 0, - constant => 0, - strict => 0, - warnings => 0, + 'Carp' => 0, + 'File::Spec' => 0, + 'XSLoader' => 0, + 'constant' => 0, + 'strict' => 0, + 'warnings' => 0, }, );
Thank you, applied