From: Abir Viqar Date: Sat, 14 Dec 2013 19:06:35 +0000 (-0500) Subject: Porting/corelist-perldelta.pl - Skip dummy items during update X-Git-Tag: upstream/5.20.0~961^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=318148ea073588bee044d98810cbfcc8227a3067;p=platform%2Fupstream%2Fperl.git Porting/corelist-perldelta.pl - Skip dummy items during update --- diff --git a/Porting/corelist-perldelta.pl b/Porting/corelist-perldelta.pl index 690d66a425..5e9f32c1ae 100755 --- a/Porting/corelist-perldelta.pl +++ b/Porting/corelist-perldelta.pl @@ -368,6 +368,9 @@ sub do_check { my $content = $item->{text}; my $module = $item->{name}; + #skip dummy items + next if !$module and $content =~ /\s*xx*\s*/i; + say "Could not parse module name; line is:\n\t$content" and next unless $module; say "$module is not in Module::CoreList; check to see that it is not covered by another section" and next unless $data->{$title}{$module};