From 010a5dd8d6baa5d69b81a3e52913422208de14df Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Wed, 21 Dec 2011 20:19:10 +0100 Subject: [PATCH] corelist-perldelta.pl now requires Algorithm::Diff instead of using it. This way ./perl -Ilib -c Porting/corelist-perldelta.pl can be used to syntax check it. corelist-perldelta.pl was not importing symbols from Algorithm::Diff, so there are no changes in runtime behaviour. --- Porting/corelist-perldelta.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Porting/corelist-perldelta.pl b/Porting/corelist-perldelta.pl index a9213c4..bdf12e5 100755 --- a/Porting/corelist-perldelta.pl +++ b/Porting/corelist-perldelta.pl @@ -6,7 +6,7 @@ use lib 'Porting'; use Maintainers qw/%Modules/; use Module::CoreList; use Getopt::Long; -use Algorithm::Diff; +require Algorithm::Diff; my %sections = ( new => 'New Modules and Pragma', -- 1.8.3.1