diff options
| author | Benjamin Poirier <bpoirier@suse.com> | 2016-04-10 20:06:30 -0400 |
|---|---|---|
| committer | Steven Rostedt <rostedt@goodmis.org> | 2016-04-26 10:04:42 -0400 |
| commit | 27b7156886d875f2f54fab8790144e1fa80b7160 (patch) | |
| tree | a6b27878227f21b6e07fe8e0a07dcde72c63060c /scripts/kconfig | |
| parent | 296471ad51780996d3b1f2dfb65bc4dbdea69a1e (diff) | |
localmodconfig: Recognize more keywords that end a menu entry
Based on the list in Documentation/kbuild/kconfig-language.txt
This removes junk from %depends because parsing of a menu entry spilled
over to another menu entry.
Link: http://lkml.kernel.org/r/1460333193-16361-1-git-send-email-bpoirier@suse.com
Signed-off-by: Benjamin Poirier <bpoirier@suse.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'scripts/kconfig')
| -rwxr-xr-x | scripts/kconfig/streamline_config.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl index 7036ae306db6..64d750cc5ae4 100755 --- a/scripts/kconfig/streamline_config.pl +++ b/scripts/kconfig/streamline_config.pl | |||
| @@ -256,8 +256,8 @@ sub read_kconfig { | |||
| 256 | 256 | ||
| 257 | $iflevel-- if ($iflevel); | 257 | $iflevel-- if ($iflevel); |
| 258 | 258 | ||
| 259 | # stop on "help" | 259 | # stop on "help" and keywords that end a menu entry |
| 260 | } elsif (/^\s*help\s*$/) { | 260 | } elsif (/^\s*help\s*$/ || /^(comment|choice|menu)\b/) { |
| 261 | $state = "NONE"; | 261 | $state = "NONE"; |
| 262 | } | 262 | } |
| 263 | } | 263 | } |
