1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-27 18:35:55 +02:00

kconfig.pl: interpret =n as undefined symbol

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15003 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2009-03-24 01:34:23 +00:00
parent 0f472f0cb3
commit f61c77e349

View File

@ -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";