Skip to content

Commit

Permalink
fix kconfig.pl split for config symbols that have "0" as value
Browse files Browse the repository at this point in the history
SVN-Revision: 8847
  • Loading branch information
Felix Fietkau committed Sep 19, 2007
1 parent abbe02e commit 15bc93f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/kconfig.pl
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ ($$)
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};
}
}
Expand Down

0 comments on commit 15bc93f

Please sign in to comment.