metadata: process dependencies for targets that have subtargets as well - hides the ramips target unless the user has requested to play with broken packages/targets (related to #6051)
SVN-Revision: 18306
This commit is contained in:
parent
94249f3c93
commit
ea63b88b10
1 changed files with 18 additions and 17 deletions
|
@ -225,8 +225,11 @@ EOF
|
||||||
}
|
}
|
||||||
if (@{$target->{subtargets}} > 0) {
|
if (@{$target->{subtargets}} > 0) {
|
||||||
$confstr .= "\tselect HAS_SUBTARGETS\n";
|
$confstr .= "\tselect HAS_SUBTARGETS\n";
|
||||||
} else {
|
}
|
||||||
|
|
||||||
|
if ($target->{arch} =~ /\w/) {
|
||||||
$confstr .= "\tselect $target->{arch}\n";
|
$confstr .= "\tselect $target->{arch}\n";
|
||||||
|
}
|
||||||
foreach my $dep (@{$target->{depends}}) {
|
foreach my $dep (@{$target->{depends}}) {
|
||||||
my $mode = "depends";
|
my $mode = "depends";
|
||||||
my $flags;
|
my $flags;
|
||||||
|
@ -242,8 +245,6 @@ EOF
|
||||||
$flags =~ /@/ and $confstr .= "\t$mode $name\n";
|
$flags =~ /@/ and $confstr .= "\t$mode $name\n";
|
||||||
}
|
}
|
||||||
$confstr .= $features;
|
$confstr .= $features;
|
||||||
}
|
|
||||||
|
|
||||||
$confstr .= "$help\n\n";
|
$confstr .= "$help\n\n";
|
||||||
print $confstr;
|
print $confstr;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue