menuconfig: don't prepend CONFIG_ to symbols in help text

This commit is contained in:
Peter Korsgaard 2008-12-13 11:52:54 +00:00
parent 80ad247617
commit 0dc552c134

View File

@ -743,7 +743,7 @@ static void show_help(struct menu *menu)
if (menu_has_help(menu))
{
if (sym->name) {
str_printf(&help, "CONFIG_%s:\n\n", sym->name);
str_printf(&help, "%s:\n\n", sym->name);
str_append(&help, _(menu_get_help(menu)));
str_append(&help, "\n");
}