mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-21 22:30:13 +00:00
kconfig.pl: interpret =n as undefined symbol
SVN-Revision: 15003
This commit is contained in:
parent
59848db7da
commit
9a3368ebca
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user