diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/kconfig/mconf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/kconfig/mconf.c b/util/kconfig/mconf.c index 72d3f68977..fc804bb366 100644 --- a/util/kconfig/mconf.c +++ b/util/kconfig/mconf.c @@ -506,11 +506,14 @@ static void build_conf(struct menu *menu) if (def_menu) { item_add_str(" (%s)", _(menu_get_prompt(def_menu))); item_add_str(" --->"); +#if 0 +/* coreboot doesn't need this representation */ if (def_menu->list) { indent += 2; build_conf(def_menu); indent -= 2; } +#endif } return; } |