mirror of https://github.com/hak5/openwrt.git
scripts/metadata.pl: avoid adding depends and select for the same symbol
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 41160lede-17.01
parent
c77311f689
commit
58bd3b0764
|
@ -504,7 +504,7 @@ sub mconf_depends {
|
|||
next if $depend eq $condition;
|
||||
$depend = "$depend if $condition";
|
||||
} else {
|
||||
$depend = "!($condition) || $depend";
|
||||
$depend = "!($condition) || $depend" unless $dep->{$condition} eq 'select';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue