summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2017-10-20 19:45:04 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2017-10-20 19:45:04 +0100
commitc687a5cdc160449ddab6d98abbc9d43898838692 (patch)
tree4aecde0440ca7ec097ec9984b31fa137113622f7
parentd8c6b69e60e6111f1dc5fb7d0f8887b23fb79fb0 (diff)
downloadperl-c687a5cdc160449ddab6d98abbc9d43898838692.tar.gz
Suppress spurious corelist-perldelta.pl warning
-rwxr-xr-xPorting/corelist-perldelta.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/corelist-perldelta.pl b/Porting/corelist-perldelta.pl
index a4f8f236c9..5290d77238 100755
--- a/Porting/corelist-perldelta.pl
+++ b/Porting/corelist-perldelta.pl
@@ -289,7 +289,7 @@ sub do_update_existing {
my ( $existing, $old, $new ) = @_;
my ( $added, $removed, $updated, $manuallyCheck ) = corelist_delta( $old => $new );
- if ($manuallyCheck) {
+ if (@{$manuallyCheck}) {
print "It cannot be determined whether the following distributions have changed.\n";
print "Please check and list accordingly:\n";
say "\t* $_" for sort @{$manuallyCheck};