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 | 8100c1727e3aeefaba7407f4edb38b7d0fba317f (patch) | |
tree | 61bae15460e0daddb77538f9ca24b21a69150117 | |
parent | 433f4998a9eac6e4a6a1620e27298b4a17b3dcf4 (diff) | |
download | upstream-8100c1727e3aeefaba7407f4edb38b7d0fba317f.tar.gz upstream-8100c1727e3aeefaba7407f4edb38b7d0fba317f.tar.bz2 upstream-8100c1727e3aeefaba7407f4edb38b7d0fba317f.zip |
kconfig.pl: interpret =n as undefined symbol
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15003 3c298f89-4303-0410-b956-a3cf2f4a3e73
-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"; |