projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86af2c8
)
fix kconfig.pl split for config symbols that have "0" as value
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 19 Sep 2007 20:55:05 +0000
(20:55 +0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 19 Sep 2007 20:55:05 +0000
(20:55 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8847
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
scripts/kconfig.pl
patch
|
blob
|
history
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.021728 seconds
and
4
git commands to generate.