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

metadata.pl: suppress profile config.in code for targets that have subtargets (fixes #14480)

Signed-off-by: Felix Fietkau <[email protected]>

SVN-Revision: 40896
Felix Fietkau 11 лет назад
Родитель
Сommit
2c4bde9c8f
1 измененных файлов с 4 добавлено и 1 удалено
  1. 4 1
      scripts/metadata.pl

+ 4 - 1
scripts/metadata.pl

@@ -75,7 +75,10 @@ sub parse_target_metadata() {
 	}
 	close FILE;
 	foreach my $target (@target) {
-		next if @{$target->{subtargets}} > 0;
+		if (@{$target->{subtargets}} > 0) {
+			$target->{profiles} = [];
+			next;
+		}
 		@{$target->{profiles}} > 0 or $target->{profiles} = [
 			{
 				id => 'Default',