Просмотр исходного кода

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
Jonas Gorski 13 лет назад
Родитель
Сommit
53c014e221
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      scripts/metadata.pl

+ 1 - 0
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;
 	}