X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=scripts%2Fkconfig.pl;h=c76e2978b2092e28b4bb5606b82a37ea87f664a2;hb=b51c8d22c06c3deb6ee489d059897c12f584366d;hp=07f03c42bd35c145fda13172a02cc038f46631f9;hpb=0f472f0cb3e7818f6c8eb1e51ed24fce9660ea8e;p=openwrt-10.03%2F.git diff --git a/scripts/kconfig.pl b/scripts/kconfig.pl index 07f03c42b..c76e2978b 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";