metadata.pl: fix recursive handling of conditional dependencies
[openwrt.git] / scripts / metadata.pl
index 70d1b40..e0fb32f 100755 (executable)
@@ -423,8 +423,9 @@ sub mconf_depends {
                my $vdep;
                my $condition = $parent_condition;
 
-               next if $seen->{$depend};
-               $seen->{$depend} = 1;
+               next if $condition eq $depend;
+               next if $seen->{"$parent_condition:$depend"};
+               $seen->{"$parent_condition:$depend"} = 1;
                if ($depend =~ /^(.+):(.+)$/) {
                        if ($1 ne "PACKAGE_$pkgname") {
                                if ($condition) {
This page took 0.025867 seconds and 4 git commands to generate.