projects
/
openwrt
/
staging
/
jow.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
abbe02e
)
fix kconfig.pl split for config symbols that have "0" as value
author
Felix Fietkau
<nbd@openwrt.org>
Wed, 19 Sep 2007 20:55:05 +0000
(20:55 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Wed, 19 Sep 2007 20:55:05 +0000
(20:55 +0000)
SVN-Revision: 8847
scripts/kconfig.pl
patch
|
blob
|
history
diff --git
a/scripts/kconfig.pl
b/scripts/kconfig.pl
index 53b8f11025f75d2ef2850e7a986db13dcd48cb6c..181b35ad47271b6f90c4af27d39e181941eeae05 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};
}
}