X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/d1a6e09c1b863a738c371caf126f42b19b2baf0b..7efebe60e89ec6d0c9630affe04d8892c574553b:/scripts/metadata.pl diff --git a/scripts/metadata.pl b/scripts/metadata.pl index da29fdd89..fa3055620 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -375,7 +375,7 @@ sub mconf_depends { my $res; my $dep = shift; my $seen = shift; - my $condition = shift; + my $parent_condition = shift; $dep or $dep = {}; $seen or $seen = {}; @@ -386,11 +386,12 @@ sub mconf_depends { $depend =~ s/^([@\+]+)//; my $flags = $1; my $vdep; + my $condition; if ($depend =~ /^(.+):(.+)$/) { if ($1 ne "PACKAGE_$pkgname") { - if ($condition) { - $condition = "$condition && $1"; + if ($parent_condition) { + $condition = "$parent_condition && $1"; } else { $condition = $1; }