projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
fix kconfig.pl split for config symbols that have "0" as value
[openwrt.git]
/
scripts
/
kconfig.pl
diff --git
a/scripts/kconfig.pl
b/scripts/kconfig.pl
index
53b8f11
..
181b35a
100755
(executable)
--- a/
scripts/kconfig.pl
+++ b/
scripts/kconfig.pl
@@
-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};
}
}
This page took
0.021142 seconds
and
4
git commands to generate.