mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 00:14:05 +02:00
fix infinite recursion in metadata.pl
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12851 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
36b5265fa0
commit
31800c29b0
@ -367,7 +367,9 @@ sub mconf_depends($$) {
|
||||
my $only_dep = shift;
|
||||
my $res;
|
||||
my $dep = shift;
|
||||
my $seen = shift;
|
||||
$dep or $dep = {};
|
||||
$seen or $seen = {};
|
||||
|
||||
$depends or return;
|
||||
my @depends = @$depends;
|
||||
@ -382,6 +384,8 @@ sub mconf_depends($$) {
|
||||
$condition = $1;
|
||||
$depend = $2;
|
||||
}
|
||||
next if $seen->{$depend};
|
||||
$seen->{$depend} = 1;
|
||||
if ($vdep = $package{$depend}->{vdepends}) {
|
||||
$depend = join("||", map { "PACKAGE_".$_ } @$vdep);
|
||||
} else {
|
||||
@ -390,7 +394,7 @@ 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 mconf_depends($package{$depend}->{depends}, 1, $dep);
|
||||
$package{$depend} and mconf_depends($package{$depend}->{depends}, 1, $dep, $seen);
|
||||
|
||||
$m = "select";
|
||||
next if $only_dep;
|
||||
|
Loading…
Reference in New Issue
Block a user