fix a small bug in the recursive dependency lookup for generated menuconfig files

SVN-Revision: 12107
This commit is contained in:
Felix Fietkau 2008-08-04 23:43:13 +00:00
parent 1b838dbd95
commit 01046ae4b2
1 changed files with 3 additions and 3 deletions

View File

@ -380,14 +380,14 @@ sub mconf_depends($$) {
$depend = join("||", map { "PACKAGE_".$_ } @$vdep);
} else {
$flags =~ /\+/ and do {
next if $only_dep;
$m = "select";
# Menuconfig will not treat 'select FOO' as a real dependency
# 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);
$m = "select";
next if $only_dep;
};
$flags =~ /@/ or $depend = "PACKAGE_$depend";
}