mirror of
https://github.com/cjdelisle/openwrt.git
synced 2025-03-16 10:51:00 +00:00
fix kconfig.pl split for config symbols that have "0" as value
SVN-Revision: 8847
This commit is contained in:
@ -72,7 +72,7 @@ sub config_diff($$) {
|
||||
my %config;
|
||||
|
||||
foreach my $config (keys %$cfg2) {
|
||||
if (!$cfg1->{$config} or $cfg1->{$config} ne $cfg2->{$config}) {
|
||||
if (!defined($cfg1->{$config}) or $cfg1->{$config} ne $cfg2->{$config}) {
|
||||
$config{$config} = $cfg2->{$config};
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user