diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-03-24 01:34:23 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-03-24 01:34:23 +0000 |
commit | 9a3368ebca2057f5bfa73f6f3e97bd54b9b0a07b (patch) | |
tree | 050b8ebf5670afcbe295d6b2de920ce9743e0936 /scripts | |
parent | 59848db7da1fbefbcccea1f87cdfc7f94211c3cb (diff) | |
download | upstream-9a3368ebca2057f5bfa73f6f3e97bd54b9b0a07b.tar.gz upstream-9a3368ebca2057f5bfa73f6f3e97bd54b9b0a07b.tar.bz2 upstream-9a3368ebca2057f5bfa73f6f3e97bd54b9b0a07b.zip |
kconfig.pl: interpret =n as undefined symbol
SVN-Revision: 15003
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/kconfig.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig.pl b/scripts/kconfig.pl index 07f03c42bd..c76e2978b2 100755 --- 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"; |