projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f472f0
)
kconfig.pl: interpret =n as undefined symbol
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 24 Mar 2009 01:34:23 +0000
(
01:34
+0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 24 Mar 2009 01:34:23 +0000
(
01:34
+0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15003
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
scripts/kconfig.pl
patch
|
blob
|
history
diff --git
a/scripts/kconfig.pl
b/scripts/kconfig.pl
index
07f03c4
..
c76e297
100755
(executable)
--- a/
scripts/kconfig.pl
+++ b/
scripts/kconfig.pl
@@
-94,7
+94,7
@@
sub config_sub($$) {
sub print_cfgline($$) {
my $name = shift;
my $val = shift;
- if ($val eq '#undef') {
+ if ($val eq '#undef'
or $val eq 'n'
) {
print "# $PREFIX$name is not set\n";
} else {
print "$PREFIX$name=$val\n";
This page took
0.024257 seconds
and
4
git commands to generate.