mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 00:30:16 +02:00
fix duplicate dependencies
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9311 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
323d4460bf
commit
0833470180
@ -301,6 +301,8 @@ sub mconf_depends($$) {
|
||||
my $depends = shift;
|
||||
my $only_dep = shift;
|
||||
my $res;
|
||||
my $dep = shift;
|
||||
$dep or $dep = {};
|
||||
|
||||
$depends or return;
|
||||
my @depends = @$depends;
|
||||
@ -321,10 +323,14 @@ sub mconf_depends($$) {
|
||||
# thus if FOO depends on other config options, these dependencies
|
||||
# will not be checked. To fix this, we simply emit all of FOO's
|
||||
# depends here as well.
|
||||
$package{$depend} and $res .= mconf_depends($package{$depend}->{depends}, 1);
|
||||
$package{$depend} and mconf_depends($package{$depend}->{depends}, 1, $dep);
|
||||
};
|
||||
$flags =~ /@/ or $depend = "PACKAGE_$depend";
|
||||
}
|
||||
$dep->{$depend} =~ /select/ or $dep->{$depend} = $m;
|
||||
}
|
||||
foreach my $depend (keys %$dep) {
|
||||
my $m = $dep->{$depend};
|
||||
$res .= "\t\t$m $depend\n";
|
||||
}
|
||||
return $res;
|
||||
|
Loading…
Reference in New Issue
Block a user