From e2cae4ae122b34bfc6d48968972c815ea6a82138 Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Thu, 1 Aug 2013 09:10:46 +0100 Subject: [PATCH] Use undef rather than 'undef' for Devel::PPPort's UPSTREAM status All other undefined UPSTREAM statuses are undef rather than 'undef' already, which causes core-cpan-diff to emit 'upstream is: UNKNOWN!' rather than 'upstream is: undef', which is probably the intended effect since it indicates the status is not known rather than specifically undefined. --- Porting/Maintainers.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 1a2bda9..06d235e 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -529,7 +529,7 @@ use File::Glob qw(:case); 'DISTRIBUTION' => 'MHX/Devel-PPPort-3.20.tar.gz', 'FILES' => q[cpan/Devel-PPPort], 'EXCLUDED' => ['PPPort.pm'], # we use PPPort_pm.PL instead - 'UPSTREAM' => 'undef', # rjbs has asked mhx to have blead be upstream + 'UPSTREAM' => undef, # rjbs has asked mhx to have blead be upstream }, 'diagnostics' => { -- 1.8.3.1