From: Felix Fietkau Date: Tue, 24 Mar 2009 01:34:23 +0000 (+0000) Subject: kconfig.pl: interpret =n as undefined symbol X-Git-Tag: reboot~24117 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=9a3368ebca2057f5bfa73f6f3e97bd54b9b0a07b;p=openwrt%2Fopenwrt.git kconfig.pl: interpret =n as undefined symbol SVN-Revision: 15003 --- 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";