diff options
| -rw-r--r-- | extra/config/kconfig-to-uclibc.patch.gz | bin | 5699 -> 5816 bytes | |||
| -rw-r--r-- | extra/config/mconf.c | 7 | 
2 files changed, 5 insertions, 2 deletions
| diff --git a/extra/config/kconfig-to-uclibc.patch.gz b/extra/config/kconfig-to-uclibc.patch.gzBinary files differ index 01c5d34f8..58c41730e 100644 --- a/extra/config/kconfig-to-uclibc.patch.gz +++ b/extra/config/kconfig-to-uclibc.patch.gz diff --git a/extra/config/mconf.c b/extra/config/mconf.c index d7314f3a3..18583bd43 100644 --- a/extra/config/mconf.c +++ b/extra/config/mconf.c @@ -704,9 +704,12 @@ static void show_help(struct menu *menu)  	{  		if (sym->name) {  			str_printf(&help, "%s:\n\n", sym->name); -			str_append(&help, _(menu_get_help(menu))); -			str_append(&help, "\n");  		} +		str_append(&help, _(menu_get_help(menu))); +		str_append(&help, "\n"); +	} else if (menu_has_help(sym->prop->menu->parent)) { +		str_append(&help, _(menu_get_help(sym->prop->menu->parent))); +		str_append(&help, "\n");  	} else {  		str_append(&help, nohelp_text);  	} | 
