metadata.pl: fix recursive handling of conditional dependencies

SVN-Revision: 21088
This commit is contained in:
Felix Fietkau 2010-04-22 15:39:20 +00:00
parent ca3e07d639
commit ceaa4bbe3c
1 changed files with 3 additions and 2 deletions

View File

@ -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) {