mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 22:05:20 +02:00
Reset condition for each dependeny when generating mconf files. Previously all
dependencys listed after a conditional dependency had the same condition. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14335 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
411eeb7ebe
commit
43169cb8cf
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user