diff options
Diffstat (limited to 'scripts/tkcond.c')
-rw-r--r-- | scripts/tkcond.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/tkcond.c b/scripts/tkcond.c index f1a36bb25..34c923fe9 100644 --- a/scripts/tkcond.c +++ b/scripts/tkcond.c @@ -53,6 +53,7 @@ static void mark_variables( struct kconfig * scfg ) || cfg->token == token_define_string || cfg->token == token_define_tristate || cfg->token == token_dep_bool + || cfg->token == token_dep_mbool || cfg->token == token_dep_tristate || cfg->token == token_hex || cfg->token == token_int @@ -498,6 +499,7 @@ void fix_conditionals( struct kconfig * scfg ) case token_define_int: case token_define_string: case token_define_tristate: + case token_endmenu: case token_hex: case token_int: case token_mainmenu_option: @@ -516,6 +518,7 @@ void fix_conditionals( struct kconfig * scfg ) break; case token_dep_bool: + case token_dep_mbool: case token_dep_tristate: /* * Same as the other simple statements, plus an additional |