From: Jo-Philipp Wich Date: Thu, 2 Nov 2017 14:39:34 +0000 (+0100) Subject: phase1: dumpinfo.pl: honour source-only flag for subtargets as well X-Git-Tag: v1~167 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=3725b7016a8312d88edcd936addabec695dd9ad2;p=buildbot.git phase1: dumpinfo.pl: honour source-only flag for subtargets as well Signed-off-by: Jo-Philipp Wich --- diff --git a/phase1/dumpinfo.pl b/phase1/dumpinfo.pl index 3e9bc4c..aa97f8d 100755 --- a/phase1/dumpinfo.pl +++ b/phase1/dumpinfo.pl @@ -28,7 +28,7 @@ sub parse_targetinfo { } elsif ($line =~ /^@\@$/) { if ($target_name && $target_arch && - !grep { $_ eq 'broken' } @target_features) { + !grep { $_ eq 'broken' or $_ eq 'source-only' } @target_features) { $targets{$target_name} = $target_arch; $architectures{$target_arch} ||= []; push @{$architectures{$target_arch}}, $target_name;