From cc51ee8adeb086aa49b2b50f6ebf08795b40b9c2 Mon Sep 17 00:00:00 2001 From: Steven Rostedt Date: Thu, 30 Apr 2009 19:24:00 -0400 Subject: [PATCH] --- yaml --- r: 161316 b: refs/heads/master c: d08ca2771e3aabddc7922d800a386f187c51f8a4 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/scripts/kconfig/streamline_config.pl | 9 +++------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/[refs] b/[refs] index 5d9cfde997cc..65773bc5ed40 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: cdfc47950a531199a553cebab0ac481aa7062948 +refs/heads/master: d08ca2771e3aabddc7922d800a386f187c51f8a4 diff --git a/trunk/scripts/kconfig/streamline_config.pl b/trunk/scripts/kconfig/streamline_config.pl index 9fa3f81b1ed9..69b7c3f6a2f4 100644 --- a/trunk/scripts/kconfig/streamline_config.pl +++ b/trunk/scripts/kconfig/streamline_config.pl @@ -323,7 +323,7 @@ sub parse_config_dep_select # enable IKCONFIG at least as a module print "CONFIG_IKCONFIG=m\n"; # don't ask about PROC - print "# CONFIG_IKCONFIG is not set\n"; + print "# CONFIG_IKCONFIG_PROC is not set\n"; } else { print; } @@ -333,15 +333,12 @@ sub parse_config_dep_select if (/^(CONFIG.*)=(m|y)/) { if (defined($configs{$1})) { $setconfigs{$1} = $2; - print; } elsif ($2 eq "m") { print "# $1 is not set\n"; - } else { - print; + next; } - } else { - print; } + print; } close(CIN);