aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/metadata.pl
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-08-04 23:43:13 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-08-04 23:43:13 +0000
commit7e91c8a04aea61ffe1ed945d03858e77fd0e3841 (patch)
tree95fa35192b334cd96cfa93787cef823e4f6ac0c2 /scripts/metadata.pl
parent79edf873140b4ae2a693bd9400516977a3375d46 (diff)
downloadmaster-187ad058-7e91c8a04aea61ffe1ed945d03858e77fd0e3841.tar.gz
master-187ad058-7e91c8a04aea61ffe1ed945d03858e77fd0e3841.tar.bz2
master-187ad058-7e91c8a04aea61ffe1ed945d03858e77fd0e3841.zip
fix a small bug in the recursive dependency lookup for generated menuconfig files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12107 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts/metadata.pl')
-rwxr-xr-xscripts/metadata.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl
index 007b63ed9f..d920f59fca 100755
--- a/scripts/metadata.pl
+++ b/scripts/metadata.pl
@@ -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";
}