X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/0f472f0cb3e7818f6c8eb1e51ed24fce9660ea8e..d5b89889f883f4aebce0d0bc8d16db629f03428b:/scripts/kconfig.pl 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";