From: Jonas Gorski Date: Mon, 22 Oct 2012 22:16:19 +0000 (+0000) Subject: scrips/metadata.pl: fix broken targets with subtargets being selectable X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=53c014e221e63c3d7f63764e010251c1ae2d2abf;hp=3cf25176a4e942891eb94f245b7d4e35f305195b;p=openwrt%2Fstaging%2Fdedeckeh.git scrips/metadata.pl: fix broken targets with subtargets being selectable r26926 moved all target features to subtargets if present, which had the side effect that broken targets are available for selection, just without any available subtargets (since they are still marked as broken). Fix this by explicitly letting the top level target also depend on broken. SVN-Revision: 33892 --- diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 7afc388927..b04cd8cc3d 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -233,6 +233,7 @@ EOF } if (@{$target->{subtargets}} > 0) { $confstr .= "\tselect HAS_SUBTARGETS\n"; + grep { /broken/ } @{$target->{features}} and $confstr .= "\tdepends BROKEN\n"; } else { $confstr .= $features; }