diff options
Diffstat (limited to 'scripts/kconfig/menu.c')
| -rw-r--r-- | scripts/kconfig/menu.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index 5fdf10dc1d8..d66008639a4 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c @@ -3,10 +3,11 @@   * Released under the terms of the GNU GPL v2.0.   */ +#include <ctype.h> +#include <stdarg.h>  #include <stdlib.h>  #include <string.h> -#define LKC_DIRECT_LINK  #include "lkc.h"  static const char nohelp_text[] = N_( @@ -350,7 +351,7 @@ void menu_finalize(struct menu *parent)  			last_menu->next = NULL;  		} -		sym->dir_dep.expr = parent->dep; +		sym->dir_dep.expr = expr_alloc_or(sym->dir_dep.expr, parent->dep);  	}  	for (menu = parent->list; menu; menu = menu->next) {  		if (sym && sym_is_choice(sym) &&  |