aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig.pl
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-03-24 01:34:23 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-03-24 01:34:23 +0000
commit8100c1727e3aeefaba7407f4edb38b7d0fba317f (patch)
tree61bae15460e0daddb77538f9ca24b21a69150117 /scripts/kconfig.pl
parent433f4998a9eac6e4a6a1620e27298b4a17b3dcf4 (diff)
downloadmaster-187ad058-8100c1727e3aeefaba7407f4edb38b7d0fba317f.tar.gz
master-187ad058-8100c1727e3aeefaba7407f4edb38b7d0fba317f.tar.bz2
master-187ad058-8100c1727e3aeefaba7407f4edb38b7d0fba317f.zip
kconfig.pl: interpret =n as undefined symbol
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15003 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts/kconfig.pl')
-rwxr-xr-xscripts/kconfig.pl2
1 files changed, 1 insertions, 1 deletions
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";